
{{alias}}( dtype, policy )
    Resolves the output ndarray data type for a unary function.

    Parameters
    ----------
    dtype: string|DataType
        Input ndarray data type.

    policy: string|DataType
        Output ndarray data type policy. If `policy` is a data type, the
        function returns the `policy` value.

    Returns
    -------
    out: DataType
        Output ndarray data type.

    Examples
    --------
    > var dt = {{alias}}( 'float64', 'real' );
    > String( dt )
    'float64'

    See Also
    --------

