nxt.setops_ex

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

Members

Functions

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")

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