Returns a forward range
which will iterate over the key-value pairs of the associative array. The
returned pairs are represented by an opaque type with .key and .value
properties for accessing references to the key and value of the pair,
respectively.
If structural changes are made to the array (removing or adding keys), all
ranges previously obtained through this function are invalidated. The
following example program will dereference a null pointer:
Note that this is a low-level interface to iterating over the associative
array and is not compatible withth the
Tuple type in Phobos.
For compatibility with Tuple, use
std.array.byPair instead.
Returns a forward range which will iterate over the key-value pairs of the associative array. The returned pairs are represented by an opaque type with .key and .value properties for accessing references to the key and value of the pair, respectively.
If structural changes are made to the array (removing or adding keys), all ranges previously obtained through this function are invalidated. The following example program will dereference a null pointer:
Note that this is a low-level interface to iterating over the associative array and is not compatible withth the Tuple type in Phobos. For compatibility with Tuple, use std.array.byPair instead.