
{{alias}}( from, to )
    Returns a boolean indicating whether a provided ndarray data type can be
    safely cast to another ndarray data type.

    Parameters
    ----------
    from: string
        ndarray data type.

    to: string
        ndarray data type.

    Returns
    -------
    bool: boolean
        Boolean indicating whether a provided data type can be safely cast to
        another data type.

    Examples
    --------
    > var bool = {{alias}}( 'float32', 'float64' )
    true
    > bool = {{alias}}( 'float64', 'int32' )
    false

    See Also
    --------

