Package-level declarations

Types

Link copied to clipboard
fun interface SimpleFilter<in T>

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Use this extension when you want to follow LiveLocation until it will became StaticLocation. This method is synchronous. You may use something like kotlinx.coroutines.launch or kotlinx.coroutines.async to run it asynchronously

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
operator fun <T> SimpleFilter<T>.not(): SimpleFilter<T>

Reverse results of this

Link copied to clipboard
infix operator fun <T> SimpleFilter<T>?.plus(other: SimpleFilter<T>?): SimpleFilter<T>

Makes an OR (||) operation between this and other

Link copied to clipboard
infix operator fun <T> SimpleFilter<T>?.times(other: SimpleFilter<T>?): SimpleFilter<T>

Makes an AND (&&) operation between this and other