Uses of Class
org.drasyl.util.Pair

Packages that use Pair
Package
Description
Utility classes used across multiple packages.
  • Uses of Pair in org.drasyl.util

    Methods in org.drasyl.util that return Pair
    Modifier and Type
    Method
    Description
    static <A, B> Pair<A,B>
    Pair.of(A first, B second)
    Obtains a tuple of two elements inferring the generic types.
    Methods in org.drasyl.util that return types with arguments of type Pair
    Modifier and Type
    Method
    Description
    static <A, B> Set<Pair<A,B>>
    SetUtil.cartesianProduct(Set<A> a, Set<B> b)
    Returns the cartesian product of the two sets a and b.