Uses of Interface
com.guinetik.corefun.Computable
Packages that use Computable
-
Uses of Computable in com.guinetik.corefun
Classes in com.guinetik.corefun that implement ComputableMethods in com.guinetik.corefun that return ComputableModifier and TypeMethodDescriptiondefault <U,R> Computable<R> Computable.combine(Computable<U> other, BiFunction<T, U, R> combiner) Combines this value with another Computable's value.default Computable<T>Filters the value, returning a default if the predicate fails.default <R> Computable<R>Computable.flatMap(Function<? super T, Computable<R>> transformer) Applies a transformation that returns a Computable and flattens the result.default <R> Computable<R>Transforms the value using the provided function.static <T> Computable<T>Computable.of(T value) Creates a new Computable wrapping the given value.default Computable<T>Performs an action on the value without altering it.Methods in com.guinetik.corefun with parameters of type ComputableModifier and TypeMethodDescriptiondefault <U,R> Computable<R> Computable.combine(Computable<U> other, BiFunction<T, U, R> combiner) Combines this value with another Computable's value.Method parameters in com.guinetik.corefun with type arguments of type ComputableModifier and TypeMethodDescriptiondefault <R> Computable<R>Computable.flatMap(Function<? super T, Computable<R>> transformer) Applies a transformation that returns a Computable and flattens the result.