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

LazyCons() приватный Метод

Construct a lazy cons on a function, with attached metadata.
private LazyCons ( IPersistentMap meta, object first, ISeq rest ) : System
meta IPersistentMap The metadata to attach.
first object The first of the sequence.
rest ISeq The rest of the sequence.
Результат System
        private LazyCons(IPersistentMap meta, object first, ISeq rest)
            : base(meta)
        {
            this._first = first;
            this._rest = rest;
        }

Same methods

LazyCons::LazyCons ( IFn f ) : System