Package net.jqwik.api

Interface Combinators.Combinator3<T1,T2,T3>

Enclosing class:
Combinators

public static interface Combinators.Combinator3<T1,T2,T3>
Combinator for three values.
  • Method Details

    • as

      <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
    • filter

      @API(status=EXPERIMENTAL, since="1.7.1") Combinators.Combinator3<T1,T2,T3> filter(Combinators.F3<T1,T2,T3,Boolean> filter)
      Filter three values to only let them pass if the predicate is true.
      Parameters:
      filter - function
      Returns:
      combinator instance
    • flatAs

      default <R> Arbitrary<R> flatAs(Combinators.F3<T1,T2,T3,Arbitrary<@NotNull R>> flatCombinator)
      Combine three values to create a new arbitrary.
      Type Parameters:
      R - return type of arbitrary
      Parameters:
      flatCombinator - function
      Returns:
      arbitrary instance