Uses of Interface
io.vavr.Tuple

Packages that use Tuple
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 Tuple in io.vavr

    Classes in io.vavr that implement Tuple
    Modifier and Type
    Class
    Description
    final class 
    A tuple of no elements which can be seen as cartesian product of no components.
    final class 
    Tuple1<T1>
    A tuple of one element which can be seen as cartesian product of one component.
    final class 
    Tuple2<T1,T2>
    A tuple of two elements which can be seen as cartesian product of two components.
    final class 
    Tuple3<T1,T2,T3>
    A tuple of three elements which can be seen as cartesian product of three components.
    final class 
    Tuple4<T1,T2,T3,T4>
    A tuple of 4 elements which can be seen as cartesian product of 4 components.
    final class 
    Tuple5<T1,T2,T3,T4,T5>
    A tuple of 5 elements which can be seen as cartesian product of 5 components.
    final class 
    Tuple6<T1,T2,T3,T4,T5,T6>
    A tuple of 6 elements which can be seen as cartesian product of 6 components.
    final class 
    Tuple7<T1,T2,T3,T4,T5,T6,T7>
    A tuple of 7 elements which can be seen as cartesian product of 7 components.
    final 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 final Tuple
    CheckResult.Falsified.sample
     
    Fields in io.vavr.test with type parameters of type Tuple
    Modifier and Type
    Field
    Description
    private final Option<Tuple>
    CheckResult.Erroneous.sample
     
    Methods in io.vavr.test that return types with arguments of type Tuple
    Modifier and Type
    Method
    Description
    CheckResult.Erroneous.sample()
     
    CheckResult.Falsified.sample()
     
    CheckResult.sample()
    An optional sample which falsified the property or which lead to an error.
    CheckResult.Satisfied.sample()
     
    Constructors in io.vavr.test with parameters of type Tuple
    Modifier
    Constructor
    Description
    (package private)
    Falsified(String propertyName, int count, Tuple sample)
     
    Constructor parameters in io.vavr.test with type arguments of type Tuple
    Modifier
    Constructor
    Description
    (package private)
    Erroneous(String propertyName, int count, Error error, Option<Tuple> sample)