Returns a newly allocated dynamic array containing a copy of the values from the associative array.
The associative array.
A dynamic array containing a copy of the values.
auto aa = ["k1": 1, "k2": 2]; int sum; foreach (e; aa.values) sum += e; assert(sum == 3);
See Implementation
Returns a newly allocated dynamic array containing a copy of the values from the associative array.