
{{alias}}( value )
    Tests if an input value is a supported ndarray output data type policy.

    Parameters
    ----------
    value: any
        Value to test.

    Returns
    -------
    bool: boolean
        Boolean indicating if an input value is a supported ndarray output data
        type policy.

    Examples
    --------
    > var bool = {{alias}}( 'boolean' )
    true
    > bool = {{alias}}( 'real' )
    true
    > bool = {{alias}}( 'numeric' )
    true
    > bool = {{alias}}( '' )
    false
    > bool = {{alias}}( 'beep' )
    false

    See Also
    --------

