A newly allocated associative array out of elements of the input series. Returns a null associative array reference when given an empty series.
Duplicates: Associative arrays have unique keys. If r contains duplicate keys, then the result will contain the value of the last pair for that key in r.
import mir.ndslice; //iota and etc import mir.series; auto s = ["c", "a", "b"].series(3.iota!int); assert(s.assocArray == [ "c": 0, "a": 1, "b": 2, ]);
Returns a newly allocated associative array from a range of key/value tuples.