コード例 #1
0
 public FunctionApplyToken(TokenList funcBase, TokenList funcName)
     : base()
 {
     this.funcBase = funcBase;
     this.funcName = funcName;
 }
コード例 #2
0
 public SuperscriptToken(TokenList supBase, TokenList supArgument)
     : base()
 {
     this.supBase     = supBase;
     this.supArgument = supArgument;
 }
コード例 #3
0
ファイル: RadicalToken.cs プロジェクト: matejD04/OMathParser
 public RadicalToken(TokenList radBase, TokenList degree)
     : base()
 {
     this.radBase = radBase;
     this.degree  = degree;
 }
コード例 #4
0
ファイル: FractionToken.cs プロジェクト: matejD04/OMathParser
 public FractionToken(TokenList numerator, TokenList denominator)
     : base()
 {
     this.numerator   = numerator;
     this.denominator = denominator;
 }
コード例 #5
0
 public ParenthesesToken(char beginChar, char endChar, IEnumerable <IToken> elements)
 {
     this.beginChar = beginChar;
     this.endChar   = endChar;
     this.elements  = new TokenList(elements);
 }
コード例 #6
0
 public SubscriptToken(TokenList subBase, TokenList subArgument)
     : base()
 {
     this.subBase     = subBase;
     this.subArgument = subArgument;
 }