
{{alias}}( x, μ )
    Evaluates the natural logarithm of the cumulative distribution function
    (logCDF) for a degenerate distribution with mean `μ`.

    If provided `NaN` for any argument, the function returns `NaN`.

    Parameters
    ----------
    x: number
        Input value.

    μ: number
        Constant value of distribution.

    Returns
    -------
    out: number
        Natural logarithm of the CDF.

    Examples
    --------
    > var y = {{alias}}( 2.0, 3.0 )
    -Infinity
    > y = {{alias}}( 4.0, 3.0 )
    0
    > y = {{alias}}( 3.0, 3.0 )
    0
    > y = {{alias}}( NaN, 0.0 )
    NaN
    > y = {{alias}}( 0.0, NaN )
    NaN


{{alias}}.factory( μ )
    Returns a function for evaluating the natural logarithm of the cumulative
    distribution function (logCDF) of a degenerate distribution with mean `μ`.

    Parameters
    ----------
    μ: number
        Constant value of distribution.

    Returns
    -------
    logcdf: Function
        Function to evaluate the natural logarithm of cumulative distribution
        function (logCDF).

    Examples
    --------
    > var mylogcdf = {{alias}}.factory( 5.0 );
    > var y = mylogcdf( 3.0 )
    -Infinity
    > y = mylogcdf( 6.0 )
    0

    See Also
    --------

