:: (Ix i) => (i, i) -> [e] -> Array i e
Construct an array from a pair of bounds and a list of values in index
order.
Constructs an immutable array from a list of initial elements. The
list gives the elements of the array in ascending order beginning with
the lowest index.
Constructs a mutable array from a list of initial elements. The list
gives the elements of the array in ascending order beginning with the
lowest index. The first and second element of the tuple specifies the
lowest and highest index, respectively.