@@ -31,7 +31,7 @@ operator fun Expr<_Number>.div(other: Expr<_Number>): Expr<_Number> =
3131
3232/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/mod/ */
3333@BsonMarker2
34- @JvmName(" Number_mod_Number " )
34+ @JvmName($$ " Number_ $mod_Number " )
3535infix fun Expr <_Number >.`$mod` (other : Expr <_Number >): Expr <_Number > =
3636 `$mod`(this , other)
3737
@@ -43,7 +43,7 @@ operator fun Expr<_Number>.times(other: Expr<_Number>): Expr<_Number> =
4343
4444/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/pow/ */
4545@BsonMarker2
46- @JvmName(" Number_pow_Number " )
46+ @JvmName($$ " Number_ $pow_Number " )
4747infix fun Expr <_Number >.`$pow` (other : Expr <_Number >): Expr <_Number > =
4848 `$pow`(this , other)
4949
@@ -82,9 +82,8 @@ operator fun Expr<_Array>.plus(other: Expr<_Array>): Expr<_Array> =
8282 `$concatArrays`(this , other)
8383
8484/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/in/ */
85- @Suppress(" FunctionName" )
8685@BsonMarker2
87- @JvmName(" Element_in_Array " )
86+ @JvmName($$ " Element_ $in_Array " )
8887infix fun Expr <_Element >.`$in` (other : Expr <_Array >): Expr <_Boolean > =
8988 `$in `(this , other)
9089
@@ -94,19 +93,19 @@ infix fun Expr<_Element>.`$in`(other: Expr<_Array>): Expr<_Boolean> =
9493
9594/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitAnd/ */
9695@BsonMarker2
97- @JvmName(" Number_bitAnd_Number " )
96+ @JvmName($$ " Number_ $bitAnd_Number " )
9897infix fun Expr <_Number >.`$bitAnd` (other : Expr <_Number >): Expr <_Number > =
9998 `$bitAnd`(this , other)
10099
101100/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitOr/ */
102101@BsonMarker2
103- @JvmName(" Number_bitOr_Number " )
102+ @JvmName($$ " Number_ $bitOr_Number " )
104103infix fun Expr <_Number >.`$bitOr` (other : Expr <_Number >): Expr <_Number > =
105104 `$bitOr`(this , other)
106105
107106/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/bitXor/ */
108107@BsonMarker2
109- @JvmName(" Number_bitXor_Number " )
108+ @JvmName($$ " Number_ $bitXor_Number " )
110109infix fun Expr <_Number >.`$bitXor` (other : Expr <_Number >): Expr <_Number > =
111110 `$bitXor`(this , other)
112111
@@ -116,13 +115,13 @@ infix fun Expr<_Number>.`$bitXor`(other: Expr<_Number>): Expr<_Number> =
116115
117116/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/and/ */
118117@BsonMarker2
119- @JvmName(" Element_and_Element " )
118+ @JvmName($$ " Element_ $and_Element " )
120119infix fun Expr <_Element >.`$and` (other : Expr <_Element >): Expr <_Boolean > =
121120 `$and `(this , other)
122121
123122/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/or/ */
124123@BsonMarker2
125- @JvmName(" Element_or_Element " )
124+ @JvmName($$ " Element_ $or_Element " )
126125infix fun Expr <_Element >.`$or` (other : Expr <_Element >): Expr <_Boolean > =
127126 `$or `(this , other)
128127
@@ -132,43 +131,43 @@ infix fun Expr<_Element>.`$or`(other: Expr<_Element>): Expr<_Boolean> =
132131
133132/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/cmp/ */
134133@BsonMarker2
135- @JvmName(" Element_cmp_Element " )
134+ @JvmName($$ " Element_ $cmp_Element " )
136135infix fun Expr <_Element >.`$cmp` (other : Expr <_Element >): Expr <_Number > =
137136 `$cmp`(this , other)
138137
139138/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/eq/ */
140139@BsonMarker2
141- @JvmName(" Element_eq_Element " )
140+ @JvmName($$ " Element_ $eq_Element " )
142141infix fun Expr <_Element >.`$eq` (other : Expr <_Element >): Expr <_Boolean > =
143142 `$eq`(this , other)
144143
145144/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/gt/ */
146145@BsonMarker2
147- @JvmName(" Element_gt_Element " )
146+ @JvmName($$ " Element_ $gt_Element " )
148147infix fun Expr <_Element >.`$gt` (other : Expr <_Element >): Expr <_Boolean > =
149148 `$gt`(this , other)
150149
151150/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/gte/ */
152151@BsonMarker2
153- @JvmName(" Element_gte_Element " )
152+ @JvmName($$ " Element_ $gte_Element " )
154153infix fun Expr <_Element >.`$gte` (other : Expr <_Element >): Expr <_Boolean > =
155154 `$gte`(this , other)
156155
157156/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/lt/ */
158157@BsonMarker2
159- @JvmName(" Element_lt_Element " )
158+ @JvmName($$ " Element_ $lt_Element " )
160159infix fun Expr <_Element >.`$lt` (other : Expr <_Element >): Expr <_Boolean > =
161160 `$lt`(this , other)
162161
163162/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/lte/ */
164163@BsonMarker2
165- @JvmName(" Element_lte_Element " )
164+ @JvmName($$ " Element_ $lte_Element " )
166165infix fun Expr <_Element >.`$lte` (other : Expr <_Element >): Expr <_Boolean > =
167166 `$lte`(this , other)
168167
169168/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/ne/ */
170169@BsonMarker2
171- @JvmName(" Element_ne_Element " )
170+ @JvmName($$ " Element_ $ne_Element " )
172171infix fun Expr <_Element >.`$ne` (other : Expr <_Element >): Expr <_Boolean > =
173172 `$ne`(this , other)
174173
@@ -178,7 +177,7 @@ infix fun Expr<_Element>.`$ne`(other: Expr<_Element>): Expr<_Boolean> =
178177
179178/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/ifNull/ */
180179@BsonMarker2
181- @JvmName(" T_ifNull_T " )
180+ @JvmName($$ " T_ $ifNull_T " )
182181infix fun <T : _Element > Expr <T >.`$ifNull` (other : Expr <T >): Expr <T > =
183182 `$ifNull`(this , other)
184183
@@ -208,31 +207,31 @@ operator fun Expr<_Document>.plus(other: Expr<_Document>): Expr<_Document> =
208207
209208/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/setDifference/ */
210209@BsonMarker2
211- @JvmName(" Array_setDifference_Array " )
210+ @JvmName($$ " Array_ $setDifference_Array " )
212211infix fun Expr <_Array >.`$setDifference` (other : Expr <_Array >): Expr <_Array > =
213212 `$setDifference`(this , other)
214213
215214/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/setEquals/ */
216215@BsonMarker2
217- @JvmName(" Array_setEquals_Array " )
216+ @JvmName($$ " Array_ $setEquals_Array " )
218217infix fun Expr <_Array >.`$setEquals` (other : Expr <_Array >): Expr <_Boolean > =
219218 `$setEquals`(this , other)
220219
221220/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/setIntersection/ */
222221@BsonMarker2
223- @JvmName(" Array_setIntersection_Array " )
222+ @JvmName($$ " Array_ $setIntersection_Array " )
224223infix fun Expr <_Array >.`$setIntersection` (other : Expr <_Array >): Expr <_Array > =
225224 `$setIntersection`(this , other)
226225
227226/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/setIsSubset/ */
228227@BsonMarker2
229- @JvmName(" Array_setIsSubset_Array " )
228+ @JvmName($$ " Array_ $setIsSubset_Array " )
230229infix fun Expr <_Array >.`$setIsSubset` (other : Expr <_Array >): Expr <_Boolean > =
231230 `$setIsSubset`(this , other)
232231
233232/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/setUnion/ */
234233@BsonMarker2
235- @JvmName(" Array_setUnion_Array " )
234+ @JvmName($$ " Array_ $setUnion_Array " )
236235infix fun Expr <_Array >.`$setUnion` (other : Expr <_Array >): Expr <_Array > =
237236 `$setUnion`(this , other)
238237
@@ -248,13 +247,13 @@ operator fun Expr<_String>.plus(other: Expr<_String>): Expr<_String> =
248247
249248/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/regexMatch/ */
250249@BsonMarker2
251- @JvmName(" String_regexMatch_Element " )
250+ @JvmName($$ " String_ $regexMatch_Element " )
252251infix fun Expr <_String >.`$regexMatch` (regex : Expr <_Element / * String | RegExp * / >): Expr <_Boolean > =
253252 `$regexMatch`(this , regex)
254253
255254/* * https://www.mongodb.com/docs/manual/reference/operator/aggregation/strcasecmp/ */
256255@BsonMarker2
257- @JvmName(" String_strcasecmp_String " )
256+ @JvmName($$ " String_ $strcasecmp_String " )
258257infix fun Expr <_String >.`$strcasecmp` (regex : Expr <_String >): Expr <_Number > =
259258 `$strcasecmp`(this , regex)
260259
0 commit comments