Package net.jqwik.api
Class Combinators.Combinator3<T1,T2,T3>
- java.lang.Object
-
- net.jqwik.api.Combinators.Combinator3<T1,T2,T3>
-
- Enclosing class:
- Combinators
public static class Combinators.Combinator3<T1,T2,T3> extends java.lang.Object
Combinator for three values.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <@NotNull R>
Arbitrary<R>as(Combinators.F3<T1,T2,T3,@NotNull R> combinator)
Combine three values.<R> Arbitrary<R>
flatAs(Combinators.F3<T1,T2,T3,Arbitrary<R>> flatCombinator)
-
-
-
Method Detail
-
as
public <@NotNull R> Arbitrary<R> as(Combinators.F3<T1,T2,T3,@NotNull R> combinator)
Combine three values.- Type Parameters:
R
- return type- Parameters:
combinator
- function- Returns:
- arbitrary instance
-
-