
{{alias}}( arrays, clbk[, thisArg] )
    Computes the range of a one-dimensional ndarray via a callback function,
    ignoring `NaN` values.

    If provided an empty ndarray, the function returns `NaN`.

    The callback function is provided three arguments:

    - value: current array element.
    - index: current array index.
    - array: the input ndarray.

    The callback function should return a numeric value.

    If the callback function does not return any value (or equivalently,
    explicitly returns `undefined`), the value is ignored.

    If the callback function returns `NaN`, the value is ignored.

    Parameters
    ----------
    arrays: ArrayLikeObject<ndarray>
        Array-like object containing a one-dimensional input ndarray.

    clbk: Function
        Callback function.

    thisArg: any (optional)
        Callback execution context.

    Returns
    -------
    out: number
        Range.

    Examples
    --------
    > var x = {{alias:@stdlib/ndarray/vector/ctor}}( [ 1.0, -2.0, NaN, 2.0 ], 'generic' );
    > function f ( v ) { return v * 2.0; };
    > {{alias}}( [ x ], f )
    8.0

    See Also
    --------

