nxt.setops_ex

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

Members

Enums

isAA
eponymoustemplate isAA(T)

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

Functions

assumeMoveableSorted
auto assumeMoveableSorted(R r)
Undocumented in source. Be warned that the author may not have intended to support it.
setIntersectionAA
auto setIntersectionAA(Ts inputs)

Intersection of two or more associative arrays of type Ts.

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.

See Also

Meta