Uses of Interface
io.vavr.CheckedFunction7
-
Packages that use CheckedFunction7 Package Description io.vavr BesideAPI
the io.vavr package contains core types like (Checked)Functions and Tuples.io.vavr.control io.vavr.test A property check framework built around Property which integrates well with unit test frameworks like junit. -
-
Uses of CheckedFunction7 in io.vavr
Methods in io.vavr that return CheckedFunction7 Modifier and Type Method Description default <V> CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,V>
CheckedFunction7. andThen(CheckedFunction1<? super R,? extends V> after)
Returns a composed function that first applies this CheckedFunction7 to the given argument and then applies CheckedFunction1after
to the result.default CheckedFunction7<T2,T3,T4,T5,T6,T7,T8,R>
CheckedFunction8. apply(T1 t1)
Applies this function partially to one argument.static <T1,T2,T3,T4,T5,T6,T7,R>
CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R>API. CheckedFunction(CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R> methodReference)
Alias forof(CheckedFunction7)
static <T1,T2,T3,T4,T5,T6,T7,R>
CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R>CheckedFunction7. constant(R value)
Returns a function that always returns the constant value that you give in parameter.default CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R>
CheckedFunction7. 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,R>
CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R>CheckedFunction7. narrow(CheckedFunction7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> f)
Narrows the givenCheckedFunction7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R>
toCheckedFunction7<T1, T2, T3, T4, T5, T6, T7, R>
static <T1,T2,T3,T4,T5,T6,T7,R>
CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R>CheckedFunction7. of(CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R> methodReference)
default CheckedFunction7<T7,T6,T5,T4,T3,T2,T1,R>
CheckedFunction7. reversed()
Returns a reversed version of this function.Methods in io.vavr with parameters of type CheckedFunction7 Modifier and Type Method Description static <T1,T2,T3,T4,T5,T6,T7,R>
CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R>API. CheckedFunction(CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R> methodReference)
Alias forof(CheckedFunction7)
static <T1,T2,T3,T4,T5,T6,T7,R>
Function7<T1,T2,T3,T4,T5,T6,T7,Option<R>>CheckedFunction7. lift(CheckedFunction7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> partialFunction)
Lifts the givenpartialFunction
into a total function that returns anOption
result.static <T1,T2,T3,T4,T5,T6,T7,R>
Function7<T1,T2,T3,T4,T5,T6,T7,Try<R>>CheckedFunction7. liftTry(CheckedFunction7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> partialFunction)
Lifts the givenpartialFunction
into a total function that returns anTry
result.static <T1,T2,T3,T4,T5,T6,T7,R>
CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R>CheckedFunction7. narrow(CheckedFunction7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> f)
Narrows the givenCheckedFunction7<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R>
toCheckedFunction7<T1, T2, T3, T4, T5, T6, T7, R>
static <T1,T2,T3,T4,T5,T6,T7,R>
CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R>CheckedFunction7. of(CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R> methodReference)
static <T1,T2,T3,T4,T5,T6,T7,R>
Function7<T1,T2,T3,T4,T5,T6,T7,R>API. unchecked(CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,R> f)
Alias forunchecked()
-
Uses of CheckedFunction7 in io.vavr.control
Methods in io.vavr.control with parameters of type CheckedFunction7 Modifier and Type Method Description <R> Try<R>
Try.WithResources7. of(CheckedFunction7<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? extends R> f)
Wraps the result of a computation that may fail in aTry
. -
Uses of CheckedFunction7 in io.vavr.test
Fields in io.vavr.test declared as CheckedFunction7 Modifier and Type Field Description private CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,Property.Condition>
Property.Property7. predicate
Methods in io.vavr.test with parameters of type CheckedFunction7 Modifier and Type Method Description Checkable
Property.Property7. implies(CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,java.lang.Boolean> postcondition)
Returns an implication which composes this Property as pre-condition and a given post-condition.Property.Property7<T1,T2,T3,T4,T5,T6,T7>
Property.ForAll7. suchThat(CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,java.lang.Boolean> predicate)
Returns a checkable property that checks values of the 7 variables of thisForAll
quantor.Constructors in io.vavr.test with parameters of type CheckedFunction7 Constructor Description Property7(java.lang.String name, Arbitrary<T1> a1, Arbitrary<T2> a2, Arbitrary<T3> a3, Arbitrary<T4> a4, Arbitrary<T5> a5, Arbitrary<T6> a6, Arbitrary<T7> a7, CheckedFunction7<T1,T2,T3,T4,T5,T6,T7,Property.Condition> predicate)
-