
{{alias}}( x, copy )
    Returns the strides of a provided ndarray.

    Parameters
    ----------
    x: ndarray
        Input ndarray.

    copy: boolean
        Boolean indicating whether to explicitly copy the value assigned to the
        input ndarray's `strides` property. When `copy` is `false`, changes to
        the returned strides array may mutate the input ndarray strides. If
        there is a chance that the returned strides will be mutated (either
        directly or by downstream consumers), set `copy` to `true` to prevent
        unintended side effects.

    Returns
    -------
    out: Array<integer>
        Strides.

    Examples
    --------
    > var out = {{alias}}( {{alias:@stdlib/ndarray/zeros}}( [ 3, 3, 3 ] ), false )
    [ 9, 3, 1 ]

    See Also
    --------

