Returns a reference to the last element of an array or slice, with optional dimension indexing.
assert(*&[3, 4].back == 4); // access be ref assert([3, 4].back!0 == 4); // Slice-like API
Returns a reference to the last element of an array or slice, with optional dimension indexing.