C# 클래스 PclUnit.Constraints.Pieces.ConstraintBuilder.OperatorStack

OperatorStack is a type-safe stack for holding ConstraintOperators
파일 보기 프로젝트 열기: jbtule/PclUnit

공개 메소드들

메소드 설명
OperatorStack ( ConstraintBuilder builder ) : System

Initializes a new instance of the T:OperatorStack class.

Pop ( ) : ConstraintOperator

Pops the topmost operator from the stack.

Push ( ConstraintOperator op ) : void

Pushes the specified operator onto the stack.

메소드 상세

OperatorStack() 공개 메소드

Initializes a new instance of the T:OperatorStack class.
public OperatorStack ( ConstraintBuilder builder ) : System
builder ConstraintBuilder The builder.
리턴 System

Pop() 공개 메소드

Pops the topmost operator from the stack.
public Pop ( ) : ConstraintOperator
리턴 ConstraintOperator

Push() 공개 메소드

Pushes the specified operator onto the stack.
public Push ( ConstraintOperator op ) : void
op ConstraintOperator The op.
리턴 void