Axiom.Compiler.Framework.BinaryList.BinaryList C# (CSharp) Метод

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

public BinaryList ( BinaryTree head, BinaryTree tail ) : System
head BinaryTree
tail BinaryTree
Результат System
        public BinaryList(BinaryTree head, BinaryTree tail)
            : base(".", null, null)
        {
            _head = head;
            _tail = tail;
            _empty = false;
        }

Same methods

BinaryList::BinaryList ( ) : System
BinaryList