pair each element's position in the list with the element
static assert (is (Enumerate!('a', 'b', 'c') == Cons!(Pack!(0, 'a'), Pack!(1, 'b'), Pack!(2, 'c'))));
See Implementation
pair each element's position in the list with the element