Drop the first N dimensions from a shape
type LastTwo = Drop<[2, 3, 4, 5], 2> // [4, 5] Copy
type LastTwo = Drop<[2, 3, 4, 5], 2> // [4, 5]
Drop the first N dimensions from a shape