Uses of Interface
io.vavr.Tuple
-
Packages that use Tuple Package Description io.vavr BesideAPI
the io.vavr package contains core types like (Checked)Functions and Tuples.io.vavr.test A property check framework built around Property which integrates well with unit test frameworks like junit. -
-
Uses of Tuple in io.vavr
Classes in io.vavr that implement Tuple Modifier and Type Class Description class
Tuple0
A tuple of no elements which can be seen as cartesian product of no components.class
Tuple1<T1>
A tuple of one element which can be seen as cartesian product of one component.class
Tuple2<T1,T2>
A tuple of two elements which can be seen as cartesian product of two components.class
Tuple3<T1,T2,T3>
A tuple of three elements which can be seen as cartesian product of three components.class
Tuple4<T1,T2,T3,T4>
A tuple of 4 elements which can be seen as cartesian product of 4 components.class
Tuple5<T1,T2,T3,T4,T5>
A tuple of 5 elements which can be seen as cartesian product of 5 components.class
Tuple6<T1,T2,T3,T4,T5,T6>
A tuple of 6 elements which can be seen as cartesian product of 6 components.class
Tuple7<T1,T2,T3,T4,T5,T6,T7>
A tuple of 7 elements which can be seen as cartesian product of 7 components.class
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>
A tuple of 8 elements which can be seen as cartesian product of 8 components. -
Uses of Tuple in io.vavr.test
Fields in io.vavr.test declared as Tuple Modifier and Type Field Description private Tuple
CheckResult.Falsified. sample
Fields in io.vavr.test with type parameters of type Tuple Modifier and Type Field Description private Option<Tuple>
CheckResult.Erroneous. sample
Methods in io.vavr.test that return types with arguments of type Tuple Modifier and Type Method Description Option<Tuple>
CheckResult.Erroneous. sample()
Option<Tuple>
CheckResult.Falsified. sample()
Option<Tuple>
CheckResult. sample()
An optional sample which falsified the property or which lead to an error.Option<Tuple>
CheckResult.Satisfied. sample()
Constructors in io.vavr.test with parameters of type Tuple Constructor Description Falsified(java.lang.String propertyName, int count, Tuple sample)
Constructor parameters in io.vavr.test with type arguments of type Tuple Constructor Description Erroneous(java.lang.String propertyName, int count, java.lang.Error error, Option<Tuple> sample)
-