iTextSharp.text.pdf.hyphenation.TernaryTree.Iterator.Iterator C# (CSharp) Method

Iterator() public method

public Iterator ( TernaryTree parent ) : System
parent TernaryTree
return System
            public Iterator(TernaryTree parent) {
                this.parent = parent;
                cur = -1;
                ns = new Stack();
                ks = new StringBuilder();
                Rewind();
            }