Returns a newly allocated associative array from pairs
import std.typecons; assert([tuple(1, 2), tuple(3, 4) ].fromPairs == [1: 2, 3: 4]);
See Source File
Returns a newly allocated associative array from pairs