|
| template<class T> |
| Istream & | operator>> (Istream &is, List< T > &list) |
| | Read List contents from Istream.
|
| labelList | identity (const label len, label start=0) |
| | Return an identity map of the given length with (map[i] == i), works like std::iota() but returning a list of label values.
|
| template<class IntType> |
| labelList | identity (const IntRange< IntType > &range) |
| | Return an identity map corresponding to the index range (start, size).
|
| template<class T> |
| labelList | sortedOrder (const UList< T > &input) |
| | Return the (stable) sort order for the list.
|
| template<class T> |
| void | sortedOrder (const UList< T > &input, labelList &order) |
| | Generate the (stable) sort order for the list.
|
| template<class T, class ListComparePredicate> |
| void | sortedOrder (const UList< T > &input, labelList &order, const ListComparePredicate &comp) |
| | Sort using specified list compare predicate.
|
Original source file List.H
Definition in file List.H.