Package net.jqwik.api
Interface Combinators.Combinator5<T1,T2,T3,T4,T5>
-
- Enclosing class:
- Combinators
public static interface Combinators.Combinator5<T1,T2,T3,T4,T5>
Combinator for five values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description <R> Arbitrary<R>
as(Combinators.F5<T1,T2,T3,T4,T5,@NotNull 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<@NotNull R>> flatCombinator)
Combine five values to create a new arbitrary.
-
-
-
Method Detail
-
as
<R> Arbitrary<R> as(Combinators.F5<T1,T2,T3,T4,T5,@NotNull R> combinator)
Combine five values.- Type Parameters:
R
- return type- Parameters:
combinator
- function- Returns:
- arbitrary instance
-
filter
@API(status=EXPERIMENTAL, since="1.7.1") 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.- Parameters:
filter
- function- Returns:
- combinator instance
-
-