Uses of Interface
civitas.celestis.util.tuple.IntTuple

Packages that use IntTuple
  • Uses of IntTuple in civitas.celestis.util.array

    Methods in civitas.celestis.util.array that return IntTuple
    Modifier and Type
    Method
    Description
    IntArray.tuple()
    Returns a tuple containing the elements of this array in their proper order.
    IntFastArray.tuple()
    Returns a tuple containing the elements of this array in their proper order.
  • Uses of IntTuple in civitas.celestis.util.tuple

    Classes in civitas.celestis.util.tuple that implement IntTuple
    Modifier and Type
    Class
    Description
    class 
    A tuple with one element.
    class 
    An immutable type containing two primitive ints.
    class 
    An immutable type containing three primitive ints.
    class 
    An immutable type containing four primitive ints.
    class 
    An array-based tuple which holds an arbitrary element of type int.
    Methods in civitas.celestis.util.tuple that return IntTuple
    Modifier and Type
    Method
    Description
    static IntTuple
    IntTuple.empty()
    Returns an empty integer tuple.
    Applies the provided mapper function f to each component of this tuple, then returns a new tuple containing the return values of the function f.
    IntArrayTuple.map(IntUnaryOperator f)
    Applies the provided mapper function f to each component of this tuple, then returns a new tuple containing the return values of the function f.
    IntTuple.map(IntUnaryOperator f)
    Applies the provided mapper function f to each component of this tuple, then returns a new tuple containing the return values of the function f.
    ArrayTuple.mapToInt(ToIntFunction<? super E> f)
    Applies the provided mapper function f to each element of this tuple, then returns a new tuple containing the return values of the function f.
    Object1.mapToInt(ToIntFunction<? super E> f)
    Applies the provided mapper function f to each element of this tuple, then returns a new tuple containing the return values of the function f.
    Object2.mapToInt(ToIntFunction<? super E> f)
    Applies the provided mapper function f to each element of this tuple, then returns a new tuple containing the return values of the function f.
    Object3.mapToInt(ToIntFunction<? super E> f)
    Applies the provided mapper function f to each element of this tuple, then returns a new tuple containing the return values of the function f.
    Object4.mapToInt(ToIntFunction<? super E> f)
    Applies the provided mapper function f to each element of this tuple, then returns a new tuple containing the return values of the function f.
    Tuple.mapToInt(ToIntFunction<? super E> f)
    Applies the provided mapper function f to each element of this tuple, then returns a new tuple containing the return values of the function f.
    static IntTuple
    IntTuple.of(int... components)
    Creates a new integer tuple from the provided array of components.
    Constructors in civitas.celestis.util.tuple with parameters of type IntTuple
    Modifier
    Constructor
    Description
     
    Creates a new tuple.
     
    Creates a new Int2.
     
    Creates a new Int3.
     
    Creates a new Int4.
     
    Creates a new array tuple.