
{{alias}}( value[, options] )
    Returns an iterator which always returns the same value.

    When provided an object reference, the returned iterator always returns the
    same reference.

    If an environment supports Symbol.iterator, the returned iterator is
    iterable.

    Parameters
    ----------
    value: any
        Value to return.

    options: Object (optional)
        Function options.

    options.iter: integer (optional)
        Number of iterations. Default: 1e308.

    Returns
    -------
    iterator: Object
        Iterator.

    iterator.next(): Function
        Returns an iterator protocol-compliant object containing the next
        iterated value (if one exists) and a boolean flag indicating whether the
        iterator is finished.

    iterator.return( [value] ): Function
        Finishes an iterator and returns a provided value.

    Examples
    --------
    > var it = {{alias}}( 3.14 );
    > var v = it.next().value
    3.14
    > v = it.next().value
    3.14

    See Also
    --------

