clojure.lang.LazyCons.LazyCons C# (CSharp) Метод

LazyCons() публичный Метод

Construct a lazy cons on a function.
public LazyCons ( IFn f ) : System
f IFn The function that will create first/rest.
Результат System
        public LazyCons(IFn f)
        {
            this._f = f;
            this._first = sentinel;
            this._rest = sentinel;
        }

Same methods

LazyCons::LazyCons ( IPersistentMap meta, object first, ISeq rest ) : System