Uses of Class
net.hydromatic.morel.util.Ord
-
Packages that use Ord Package Description net.hydromatic.morel.type Type system.net.hydromatic.morel.util Utilities. -
-
Uses of Ord in net.hydromatic.morel.type
Methods in net.hydromatic.morel.type that return Ord Modifier and Type Method Description Ord<Type>RecordType. lookupField(String fieldName)Returns the index of a given field, or -1. -
Uses of Ord in net.hydromatic.morel.util
Methods in net.hydromatic.morel.util that return Ord Modifier and Type Method Description Ord<E>Ord.OrdArrayList. get(int index)Ord<E>Ord.OrdList. get(int index)static <E> Ord<E>Ord. of(int n, E e)Creates an Ord.Methods in net.hydromatic.morel.util that return types with arguments of type Ord Modifier and Type Method Description static <E> Iterable<Ord<E>>Ord. reverse(E... elements)Iterates over an array in reverse order.static <E> Iterable<Ord<E>>Ord. reverse(Iterable<? extends E> elements)Iterates over a list in reverse order.static <E> List<Ord<E>>Ord. zip(E[] elements)Returns a numbered list based on an array.static <E> Iterable<Ord<E>>Ord. zip(Iterable<? extends E> iterable)Creates an iterable ofOrds over an iterable.static <E> Iterator<Ord<E>>Ord. zip(Iterator<? extends E> iterator)Creates an iterator ofOrds over an iterator.static <E> List<Ord<E>>Ord. zip(List<? extends E> elements)Returns a numbered list.
-