
{{alias}}( x )
    Serializes an ndarray as a string.

    This function does *not* serialize data outside of the buffer region
    defined by the ndarray view.

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

    Returns
    -------
    out: string
        String representation.

    Examples
    --------
    > var arr = {{alias:@stdlib/ndarray/array}}( [ [ 1, 2 ], [ 3, 4 ] ] );
    > var out = {{alias}}( arr )
    <string>

    See Also
    --------

