Selection

Undocumented in source.
class Selection (
T
) {}

Constructors

this
this(T[] src, bool addAll)
Undocumented in source.
this
this(CList!T src, bool addAll)
Undocumented in source.

Members

Functions

add
void add(size_t location)
Undocumented in source. Be warned that the author may not have intended to support it.
filter
Selection!T filter(bool delegate(T) condition)
Undocumented in source. Be warned that the author may not have intended to support it.
length
size_t length()
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(T) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(ptrdiff_t, T) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(ptrdiff_t, LinkedListIterator!T, T) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(T*) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(ptrdiff_t, T*) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(ptrdiff_t, LinkedListIterator!T, T*) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(ptrdiff_t, const T) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(const T) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opApply
int opApply(int delegate(ptrdiff_t, LinkedListIterator!T, const T) dg)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndex
T opIndex(size_t pos)
Undocumented in source. Be warned that the author may not have intended to support it.
sortAsc
Selection!T sortAsc(TKey delegate(T) select)
Undocumented in source. Be warned that the author may not have intended to support it.
sortDesc
Selection!T sortDesc(TKey delegate(T) select)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

locations
size_t[] locations;
Undocumented in source.
sorted
bool sorted;
Undocumented in source.
source
T[] source;
Undocumented in source.
sourceList
CList!T sourceList;
Undocumented in source.

Meta