Equals() static private method

static private Equals ( SymbolSet s, SymbolSet t ) : bool
s SymbolSet
t SymbolSet
return bool
Ejemplo n.º 1
0
 private SymbolSet find(SymbolSet h)
 {
     if (h == null)
     {
         this.m_next           = this.m_symbols.lahead;
         this.m_symbols.lahead = this;
         return(this);
     }
     if (SymbolSet.Equals(h, this))
     {
         return(h);
     }
     return(this.find(h.m_next));
 }