public static interface Combinators.Combinator5<T1,T2,T3,T4,T5>
Modifier and Type | Method and Description |
---|---|
<R> Arbitrary<R> |
as(Combinators.F5<T1,T2,T3,T4,T5,R> combinator)
Combine five values.
|
Combinators.Combinator5<T1,T2,T3,T4,T5> |
filter(Combinators.F5<T1,T2,T3,T4,T5,java.lang.Boolean> filter)
Filter five values to only let them pass if the predicate is true.
|
default <R> Arbitrary<R> |
flatAs(Combinators.F5<T1,T2,T3,T4,T5,Arbitrary<R>> flatCombinator)
Combine five values to create a new arbitrary.
|
<R> Arbitrary<R> as(Combinators.F5<T1,T2,T3,T4,T5,R> combinator)
R
- return typecombinator
- function@API(status=MAINTAINED, since="1.8.0") Combinators.Combinator5<T1,T2,T3,T4,T5> filter(Combinators.F5<T1,T2,T3,T4,T5,java.lang.Boolean> filter)
filter
- function