FunctionSupplier

interface FunctionSupplier<T, R> : Function<T, R> , Supplier<R>

Interface that combines Function and Supplier

Author

fzzyhmstrs

Since

0.6.8

Inheritors

Functions

Link copied to clipboard
open fun <V : Any> andThen(p0: Function<in R, out V>): Function<T, V>
Link copied to clipboard
abstract fun apply(p0: T): R
Link copied to clipboard
open fun <V : Any> compose(p0: Function<in V, out T>): Function<V, R>
Link copied to clipboard
abstract fun get(): R