public class MapReduceIterablesKt
@NotNull
public static <T> com.mongodb.async.client.MapReduceIterable<T> scope(@NotNull
com.mongodb.async.client.MapReduceIterable<T> $receiver,
@NotNull
java.lang.String scope)
Sets the global variables that are accessible in the map, reduce and finalize functions.
scope - the global variables that are accessible in the map, reduce and finalize functions.@NotNull
public static <T> com.mongodb.async.client.MapReduceIterable<T> sort(@NotNull
com.mongodb.async.client.MapReduceIterable<T> $receiver,
@NotNull
java.lang.String sort)
Sets the sort criteria to apply to the query.
sort - the sort criteria, which may be null@NotNull
public static <T> com.mongodb.async.client.MapReduceIterable<T> ascendingSort(@NotNull
com.mongodb.async.client.MapReduceIterable<T> $receiver,
@NotNull
kotlin.reflect.KProperty... properties)
Sets the sort criteria with specified ascending properties to apply to the query.
properties - the properties@NotNull
public static <T> com.mongodb.async.client.MapReduceIterable<T> descendingSort(@NotNull
com.mongodb.async.client.MapReduceIterable<T> $receiver,
@NotNull
kotlin.reflect.KProperty... properties)
Sets the sort criteria with specified descending properties to apply to the query.
properties - the properties@NotNull
public static <T> com.mongodb.async.client.MapReduceIterable<T> filter(@NotNull
com.mongodb.async.client.MapReduceIterable<T> $receiver,
@NotNull
java.lang.String filter)
Sets the query filter to apply to the query.
filter - the filter to apply to the query