nxt.setops_ex

Extend std.algorithm.setopts to also operate on set- and map-like containers/ranges.

Members

Functions

assumeMoveableSorted
auto assumeMoveableSorted(R r)
Undocumented in source. Be warned that the author may not have intended to support it.
setIntersectionFast
MoveableSortedRange!(SetIntersectionFast!(less, preferredSearchPolicy, Rs)) setIntersectionFast(Rs ranges)

Get intersection of ranges.

setUnionUpdate
auto setUnionUpdate(T1 a, T2 b)

Specialization for std.algorithm.setopts.setUnion for AA.

Structs

MoveableSortedRange
struct MoveableSortedRange(Range, alias pred = "a < b")
Undocumented in source.

Templates

hasContains
template hasContains(Set)

Is true iff Set is set-like container, that is provides membership checking via the in operator or contains.

isAA
template isAA(Map)

Is true iff Map is map-like container, that is provides membership checking via the in operator or contains.

See Also

Meta