
{{alias}}( dtype, shape, order )
    Returns a null-filled ndarray having a specified shape and data type.

    Parameters
    ----------
    dtype: string|DataType
        Underlying data type. Must be a "generic" data type.

    shape: ArrayLikeObject<integer>
        Array shape.

    order: string
        Specifies whether an array is row-major (C-style) or column-major
        (Fortran-style).

    Returns
    -------
    out: ndarray
        Output array.

    Examples
    --------
    > var arr = {{alias}}( 'generic', [ 2, 2 ], 'row-major' )
    <ndarray>[ [ null, null ], [ null, null ] ]

    See Also
    --------

