Helper/wrapper for void[0]T
An object which acts mostly as an associative array, with the added property of being able to hold keys with multiple values. These are only exposed explicitly and through iteration
An associative array which retains the order in which elements were added.
An ordered set of T, which retains the order in which elements are added.
Work around https://issues.dlang.org/show_bug.cgi?id=15795
Work around https://issues.dlang.org/show_bug.cgi?id=15795
Get a value from an AA, and throw an exception (not an error) if not found
If key is not in aa, add it with the given value, and return true. Otherwise, return false.
If key is not in aa, add it with defaultValue. Returns a reference to the value corresponding to key.
Merge source into target. Return target.
Ensure that arr is non-null if empty.
Like assocArray
Construct an ordered set from the range r.
Get key/value pairs from AA
Polyfill for object.require
Get key/value pairs from AA, sorted by keys
Get values from AA, sorted by keys
Slurp a range of two elements (or two-element struct/class) into an AA.
Construct a set from the range r.
Polyfill for object.update
Polyfill for object.update with void update function
Base type for ordered/unordered single-value/multi-value map/set
Key/value pair
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
Associative Array utility functions