@@ -18,29 +18,29 @@ import org.cufy.ped.encodeOne
1818
1919/* * https://www.mongodb.com/docs/manual/reference/operator/query/eq */
2020@BsonMarker2
21- @JvmName($$" ( BsonCodec<T>) _$eq_T " )
21+ @JvmName($$" $ BsonCodec$T$ _$eq_T" )
2222context(_: /* Operator */ BsonDocumentBuilder , _: BsonCodec <T >)
2323fun <T > `$eq` (value : T ) =
2424 `$eq` by encode(value)
2525
2626/* * https://www.mongodb.com/docs/manual/reference/operator/query/eq */
2727@Suppress(" CONTEXTUAL_OVERLOAD_SHADOWED" )
2828@BsonMarker2
29- @JvmName($$" ( BsonCodec< List<T>>) _$eq_T " )
29+ @JvmName($$" $ BsonCodec$ List$T$ _$eq_T" )
3030context(_: /* Operator */ BsonDocumentBuilder , _: BsonCodec <List <T >>)
3131fun <T > `$eq` (value : T ) =
3232 `$eq` by encodeOne(value)
3333
3434/* * https://www.mongodb.com/docs/manual/reference/operator/query/eq */
3535@BsonMarker2
36- @JvmName($$" BsonFieldCodec<T>_ $eq_T " )
36+ @JvmName($$" BsonFieldCodec$T_ $eq_T" )
3737context(_: /* Query */ BsonDocumentBuilder )
3838infix fun <T > BsonFieldCodec <T >.`$eq` (value : T ) =
3939 this .name by { `$eq` by (value encode this ) }
4040
4141/* * https://www.mongodb.com/docs/manual/reference/operator/query/eq */
4242@BsonMarker2
43- @JvmName($$" BsonFieldCodec< List<T>>_ $eq_T " )
43+ @JvmName($$" BsonFieldCodec$ List$T_ $eq_T" )
4444context(_: /* Query */ BsonDocumentBuilder )
4545infix fun <T > BsonFieldCodec <List <T >>.`$eq` (value : T ) =
4646 this .name by { `$eq` by (value encodeOne this ) }
@@ -89,14 +89,14 @@ fun <T> `$in`(values: List<T>) =
8989
9090/* * https://www.mongodb.com/docs/manual/reference/operator/query/in */
9191@BsonMarker2
92- @JvmName($$" BsonFieldCodec<T>_ $ in_List<T> " )
92+ @JvmName($$" BsonFieldCodec$T_$ in_List$T " )
9393context(_: /* Query */ BsonDocumentBuilder )
9494infix fun <T > BsonFieldCodec <T >.`$in` (values : List <T >) =
9595 this .name by { `$in ` by array { values.forEach { by(it encode this ) } } }
9696
9797/* * https://www.mongodb.com/docs/manual/reference/operator/query/in */
9898@BsonMarker2
99- @JvmName($$" BsonFieldCodec< List<T>>_ $ in_List<T> " )
99+ @JvmName($$" BsonFieldCodec$ List$T_$ in_List$T " )
100100context(_: /* Query */ BsonDocumentBuilder )
101101infix fun <T > BsonFieldCodec <List <T >>.`$in` (values : List <T >) =
102102 this .name by { `$in ` by (values encode this ) }
@@ -133,29 +133,29 @@ infix fun <T> BsonFieldCodec<T>.`$lte`(value: T) =
133133
134134/* * https://www.mongodb.com/docs/manual/reference/operator/query/ne */
135135@BsonMarker2
136- @JvmName($$" ( BsonCodec<T>) _$ne_T " )
136+ @JvmName($$" $ BsonCodec$T$ _$ne_T" )
137137context(_: /* Operator */ BsonDocumentBuilder , _: BsonCodec <T >)
138138fun <T > `$ne` (value : T ) =
139139 `$ne` by encode(value)
140140
141141/* * https://www.mongodb.com/docs/manual/reference/operator/query/ne */
142142@Suppress(" CONTEXTUAL_OVERLOAD_SHADOWED" )
143143@BsonMarker2
144- @JvmName($$" ( BsonCodec< List<T>>) _$ne_T " )
144+ @JvmName($$" $ BsonCodec$ List$T$ _$ne_T" )
145145context(_: /* Operator */ BsonDocumentBuilder , _: BsonCodec <List <T >>)
146146fun <T > `$ne` (value : T ) =
147147 `$ne` by encodeOne(value)
148148
149149/* * https://www.mongodb.com/docs/manual/reference/operator/query/ne */
150150@BsonMarker2
151- @JvmName($$" BsonFieldCodec<T>_ $ne_T " )
151+ @JvmName($$" BsonFieldCodec$T_ $ne_T" )
152152context(_: /* Query */ BsonDocumentBuilder )
153153infix fun <T > BsonFieldCodec <T >.`$ne` (value : T ) =
154154 this .name by { `$ne` by (value encode this ) }
155155
156156/* * https://www.mongodb.com/docs/manual/reference/operator/query/ne */
157157@BsonMarker2
158- @JvmName($$" BsonFieldCodec< List<T>>_ $ne_T " )
158+ @JvmName($$" BsonFieldCodec$ List$T_ $ne_T" )
159159context(_: /* Query */ BsonDocumentBuilder )
160160infix fun <T > BsonFieldCodec <List <T >>.`$ne` (value : T ) =
161161 this .name by { `$ne` by (value encodeOne this ) }
@@ -176,14 +176,14 @@ fun <T> `$nin`(values: List<T>) =
176176
177177/* * https://www.mongodb.com/docs/manual/reference/operator/query/nin */
178178@BsonMarker2
179- @JvmName($$" BsonFieldCodec<T>_ $ nin_List<T> " )
179+ @JvmName($$" BsonFieldCodec$T_$ nin_List$T " )
180180context(_: /* Query */ BsonDocumentBuilder )
181181infix fun <T > BsonFieldCodec <T >.`$nin` (values : List <T >) =
182182 this .name by { `$nin` by array { values.forEach { by(it encode this ) } } }
183183
184184/* * https://www.mongodb.com/docs/manual/reference/operator/query/nin */
185185@BsonMarker2
186- @JvmName($$" BsonFieldCodec< List<T>>_ $ nin_List<T> " )
186+ @JvmName($$" BsonFieldCodec$ List$T_$ nin_List$T " )
187187context(_: /* Query */ BsonDocumentBuilder )
188188infix fun <T > BsonFieldCodec <List <T >>.`$nin` (values : List <T >) =
189189 this .name by { `$nin` by (values encode this ) }
0 commit comments