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