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