
{{alias}}( value, dtype, order )
    Returns a zero-dimensional ndarray containing a provided scalar value.

    If `value` is a number and `dtype` is a complex number data type, the
    function returns a zero-dimensional ndarray containing a complex number
    whose real component equals the provided scalar value and whose imaginary
    component is zero.

    Parameters
    ----------
    value: any
        Scalar value.

    dtype: string|DataType
        Data type.

    order: string
        Memory layout (either 'row-major' or 'column-major').

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

    Examples
    --------
    > var x = {{alias}}( 1.0, 'float64', 'row-major' )
    <ndarray>
    > var sh = {{alias:@stdlib/ndarray/shape}}( x )
    []
    > var v = x.get()
    1.0

    See Also
    --------

