Companion
object Companion
Functions
Link copied to clipboard
Composites two constants and supplies the result
Composites a constant and a supplier and supplies the result. Result is recomputed on every get call
Composites a supplier and constant and supplies the result. Result is recomputed on every get call
fun <T> of(oneSupplier: Supplier<T>, twoSupplier: Supplier<T>, compositingFunction: BiFunction<T, T, T>): Supplier<T>
Composites two suppliers and supplies the result. Result is recomputed on every get call