Skip to content

Commit 6b92709

Browse files
committed
Add missing lexicographical operators to documentation
1 parent 3cd799a commit 6b92709

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

docs/builtin_operators.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@
2626
* [lex_nin](#lex_nin)
2727
* [ilex_in](#ilex_in)
2828
* [ilex_nin](#ilex_nin)
29+
* [lex_contains](#lex_contains)
30+
* [ilex_contains](#ilex_contains)
31+
* [lex_starts_with](#lex_starts_with)
32+
* [ilex_starts_with](#ilex_starts_with)
33+
* [lex_ends_with](#lex_ends_with)
34+
* [ilex_ends_with](#ilex_ends_with)
2935
* [Regular expressions](#regular-expressions)
3036
* [regex_match](#regex_match)
3137
* [regex_nmatch](#regex_nmatch)
@@ -135,6 +141,30 @@ Lexicographical case insensitive [in](index.md#in) operator.
135141

136142
Lexicographical case insensitive [nin](index.md#nin) operator.
137143

144+
### lex_contains
145+
146+
Lexicographically contains.
147+
148+
### ilex_contains
149+
150+
Lexicographically case insensitive contains.
151+
152+
### lex_starts_with
153+
154+
Lexicographically starts with.
155+
156+
### ilex_starts_with
157+
158+
Lexicographically case insensitive starts with.
159+
160+
### lex_ends_with
161+
162+
Lexicographically ends with.
163+
164+
### ilex_ends_with
165+
166+
Lexicographically case insensitive ends with.
167+
138168
## Regular expressions
139169

140170
Regular expression operators are defined in `validator/operators/regex.hpp` header file.

0 commit comments

Comments
 (0)