Namespaces | |
ranges | |
unstable_remove have O(1) complexity for each element remove, unlike remove O(n) [for worst case] Each erased element overwritten (moved in) with last one. | |
Enumerations | |
enum | ranges::v3::category { ranges::v3::category::none = 0, ranges::v3::category::input = 1, ranges::v3::category::forward = 3, ranges::v3::category::bidirectional = 7, ranges::v3::category::random_access = 15, ranges::v3::category::mask = random_access, ranges::v3::category::sized = 16 } |
An enum that denotes the supported subset of range concepts supported by a range. | |