
{{alias}}( a, b )
    Tests if two double-precision floating-point numbers are the same value.

    The function differs from the `===` operator in that the function treats
    `NaNs` as the same value.

    Parameters
    ----------
    a: number
        First input value.

    b: number
        Second input value.

    Returns
    -------
    bool: boolean
        Boolean indicating whether two double-precision floating-point numbers
        are the same value.

    Examples
    --------
    > var bool = {{alias}}( -0.0, -0.0 )
    true
    > bool = {{alias}}( -0.0, 0.0 )
    true
    > bool = {{alias}}( NaN, NaN )
    true

    See Also
    --------

