collections.sortedlist

Undocumented in source.

Members

Structs

SortedList
struct SortedList(E, alias cmp = "a < b", bool allowDuplicates = true, alias equal = "a == b")

Implements a sorted list of type T. The container ensures that all of it's elements are ordered after any insertion. Has some optimization to stop searching after a given value has passed. cmp can set both the direction of the array, and what parameters should be tested. If allowDuplicates set false, the collection will act like a sorted set over an array, and won't allow any insertion of preexisting values.

Meta