Uses of Interface
io.vavr.CheckedFunction8
Packages that use CheckedFunction8
Package
Description
Beside
API the io.vavr package contains core types like (Checked)Functions and Tuples.A property check framework built around Property which integrates well with unit test frameworks like junit.
-
Uses of CheckedFunction8 in io.vavr
Methods in io.vavr that return CheckedFunction8Modifier and TypeMethodDescriptionCheckedFunction8.andThen(CheckedFunction1<? super R, ? extends V> after) Returns a composed function that first applies this CheckedFunction8 to the given argument and then applies CheckedFunction1afterto the result.static <T1,T2, T3, T4, T5, T6, T7, T8, R>
CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> API.CheckedFunction(CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> methodReference) Alias forCheckedFunction8.of(CheckedFunction8)static <T1,T2, T3, T4, T5, T6, T7, T8, R>
CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> CheckedFunction8.constant(R value) Returns a function that always returns the constant value that you give in parameter.CheckedFunction8.memoized()Returns a memoizing version of this function, which computes the return value for given arguments only one time.static <T1,T2, T3, T4, T5, T6, T7, T8, R>
CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> CheckedFunction8.narrow(CheckedFunction8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R> f) Narrows the givenCheckedFunction8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>toCheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R>static <T1,T2, T3, T4, T5, T6, T7, T8, R>
CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> CheckedFunction8.of(CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> methodReference) Creates aCheckedFunction8based on method reference lambda expression Examples (w.l.o.g. referring to Function1):CheckedFunction8.reversed()Returns a reversed version of this function.Methods in io.vavr with parameters of type CheckedFunction8Modifier and TypeMethodDescriptionstatic <T1,T2, T3, T4, T5, T6, T7, T8, R>
CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> API.CheckedFunction(CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> methodReference) Alias forCheckedFunction8.of(CheckedFunction8)CheckedFunction8.lift(CheckedFunction8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anOptionresult.CheckedFunction8.liftTry(CheckedFunction8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anTryresult.static <T1,T2, T3, T4, T5, T6, T7, T8, R>
CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> CheckedFunction8.narrow(CheckedFunction8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R> f) Narrows the givenCheckedFunction8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>toCheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R>static <T1,T2, T3, T4, T5, T6, T7, T8, R>
CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> CheckedFunction8.of(CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> methodReference) Creates aCheckedFunction8based on method reference lambda expression Examples (w.l.o.g. referring to Function1):static <T1,T2, T3, T4, T5, T6, T7, T8, R>
Function8<T1, T2, T3, T4, T5, T6, T7, T8, R> API.unchecked(CheckedFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R> f) Alias forCheckedFunction8.unchecked() -
Uses of CheckedFunction8 in io.vavr.control
Methods in io.vavr.control with parameters of type CheckedFunction8 -
Uses of CheckedFunction8 in io.vavr.test
Methods in io.vavr.test with parameters of type CheckedFunction8Modifier and TypeMethodDescriptionReturns an implication which composes this Property as pre-condition and a given post-condition.Returns a checkable property that checks values of the 8 variables of thisForAllquantor.