TypeTensor - v0.1.0
    Preparing search index...

    Type Alias Drop<T, N>

    Drop: DropHelper<T, N>

    Drop the first N dimensions from a shape

    Type Parameters

    • T extends Shape
    • N extends number
    type LastTwo = Drop<[2, 3, 4, 5], 2> // [4, 5]