public class Coordinates extends Object
| Modifier and Type | Method and Description |
|---|---|
static java.util.stream.Stream<MutableIntTuple> |
colexicographicalCoordinates(IntTuple arraySize)
Returns a stream over the coordinates of an array with
the given size, in colexicographical order.
|
static java.util.stream.Stream<MutableIntTuple> |
coordinates(IntTuple arraySize)
Returns a default stream over the coordinates of an array with
the given size.
|
static java.util.stream.Stream<MutableIntTuple> |
coordinates(Order order,
IntTuple arraySize)
Returns a stream over the coordinates of an array with the given
size, using the given iteration
Order. |
static java.util.stream.Stream<MutableIntTuple> |
lexicographicalCoordinates(IntTuple arraySize)
Returns a stream over the coordinates of an array with
the given size, in lexicographical order.
|
public static java.util.stream.Stream<MutableIntTuple> coordinates(IntTuple arraySize)
arraySize - The array sizeNullPointerException - If the given size is nullpublic static java.util.stream.Stream<MutableIntTuple> coordinates(Order order, IntTuple arraySize)
Order. If the given
Order is null, then an unspecified default
order will be used.order - The iteration OrderarraySize - The array sizeNullPointerException - If the given size is nullpublic static java.util.stream.Stream<MutableIntTuple> lexicographicalCoordinates(IntTuple arraySize)
arraySize - The array sizeNullPointerException - If the given size is nullpublic static java.util.stream.Stream<MutableIntTuple> colexicographicalCoordinates(IntTuple arraySize)
arraySize - The array sizeNullPointerException - If the given size is nullCopyright © 2015. All Rights Reserved.