Function object.byKeyValue
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 
						
				auto byKeyValue(T, K, V)
				(
				
				  T aa
				
				) pure nothrow @nogc @safe;
				
				
				auto byKeyValue(T, K, V)
				(
				
				  T* aa
				
				) pure nothrow @nogc;
						
					
				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:
import std 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.
Parameters
| Name | Description | 
|---|---|
| aa | The associative array. | 
Returns
A forward range referencing the pairs of the associative array.
Example
auto dict = ["k1": 1, "k2": 2];
int sum;
foreach (e; dictAuthors
Walter Bright, Sean Kelly