aa
com.cliffc.aa.HM.HM3.VStack Class Reference
Inheritance diagram for com.cliffc.aa.HM.HM3.VStack:
[legend]
Collaboration diagram for com.cliffc.aa.HM.HM3.VStack:
[legend]

Classes

class  Iter
 

Public Member Functions

Iterator< HMVariterator ()
 
String toString ()
 

Package Functions

 VStack (VStack par, HMVar nongen)
 
SB str (SB sb)
 

Package Attributes

final HMVar _nongen
 
final VStack _par
 

Detailed Description

Definition at line 83 of file HM3.java.

Constructor & Destructor Documentation

◆ VStack()

com.cliffc.aa.HM.HM3.VStack.VStack ( VStack  par,
HMVar  nongen 
)
package

Definition at line 86 of file HM3.java.

86 { _par=par; _nongen=nongen; }

References com.cliffc.aa.HM.HM3.VStack._nongen, and com.cliffc.aa.HM.HM3.VStack._par.

Member Function Documentation

◆ iterator()

Iterator<HMVar> com.cliffc.aa.HM.HM3.VStack.iterator ( )

Definition at line 93 of file HM3.java.

93 { return new Iter(); }

◆ str()

SB com.cliffc.aa.HM.HM3.VStack.str ( SB  sb)
package

Definition at line 88 of file HM3.java.

88  {
89  _nongen._str(sb,new VBitSet(),false);
90  if( _par!=null ) _par.str(sb.p(" >> "));
91  return sb;
92  }

References com.cliffc.aa.HM.HM3.VStack._nongen, com.cliffc.aa.HM.HM3.VStack._par, com.cliffc.aa.HM.HM3.HMVar._str(), com.cliffc.aa.util.SB.p(), and com.cliffc.aa.HM.HM3.VStack.str().

Referenced by com.cliffc.aa.HM.HM3.VStack.str(), and com.cliffc.aa.HM.HM3.VStack.toString().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ toString()

String com.cliffc.aa.HM.HM3.VStack.toString ( )

Definition at line 87 of file HM3.java.

87 { return str(new SB()).toString(); }

References com.cliffc.aa.HM.HM3.VStack.str(), and com.cliffc.aa.util.SB.toString().

Here is the call graph for this function:

Member Data Documentation

◆ _nongen

final HMVar com.cliffc.aa.HM.HM3.VStack._nongen
package

◆ _par

final VStack com.cliffc.aa.HM.HM3.VStack._par
package

The documentation for this class was generated from the following file:
com.cliffc.aa.HM.HM3.HMVar._str
SB _str(SB sb, VBitSet dups, boolean debug)
Definition: HM3.java:328
com.cliffc.aa.HM.HM3.VStack._par
final VStack _par
Definition: HM3.java:84
com.cliffc.aa.util.VBitSet
Definition: VBitSet.java:5
com.cliffc.aa.util.SB
Tight/tiny StringBuilder wrapper.
Definition: SB.java:8
com.cliffc.aa.util.SB.p
SB p(String s)
Definition: SB.java:13
com.cliffc.aa.HM.HM3.VStack.str
SB str(SB sb)
Definition: HM3.java:88
com.cliffc.aa.HM.HM3.VStack._nongen
final HMVar _nongen
Definition: HM3.java:85
com.cliffc.aa.util.SB.toString
String toString()
Definition: SB.java:62