Create a vector from a list of elements and explicit dimension. The
input list is truncated if it is too long, so it may safely be used,
for instance, with infinite lists.
>>> 5 |> [1..]
[1.0,2.0,3.0,4.0,5.0]
it :: (Enum a, Num a, Foreign.Storable.Storable a) => Vector a
Left-associative apply operator. Read as "apply forward" or
"pipe into". Use this to create long chains of computation that
suggest which direction things move in.