private NumberFunctions(NumberFunctions other) : base(other) {
     this.arg = Clone(other.arg);
     this.ftype = other.ftype;
 }
예제 #2
0
 public NodeFunctions(FT funcType, Query arg)
 {
     _funcType = funcType;
     _arg      = arg;
 }
 public NumberFunctions(FT ftype, Query arg) {
     this.arg = arg;
     this.ftype = ftype;
 }
예제 #4
0
 public NumberFunctions(FT ftype, Query arg)
 {
     this.arg   = arg;
     this.ftype = ftype;
 }
예제 #5
0
 private NumberFunctions(NumberFunctions other) : base(other)
 {
     this.arg   = Clone(other.arg);
     this.ftype = other.ftype;
 }
예제 #6
0
 public BooleanFunctions(FT funcType, Query arg) {
     this.arg      = arg;
     this.funcType = funcType;
 }
 private BooleanFunctions(BooleanFunctions other) : base(other)
 {
     this.arg      = Clone(other.arg);
     this.funcType = other.funcType;
 }
예제 #8
0
 private NumberFunctions(NumberFunctions other) : base(other)
 {
     _arg = Clone(other._arg);
     _ftype = other._ftype;
 }
 public NodeFunctions(FT funcType, Query arg)
 {
     this.funcType = funcType;
     this.arg      = arg;
 }
예제 #10
0
 public NodeFunctions(FT funcType, Query arg) {
     this.funcType = funcType;
     this.arg = arg; 
 }
예제 #11
0
 public NumberFunctions(FT ftype, Query arg)
 {
     _arg = arg;
     _ftype = ftype;
 }
예제 #12
0
 private BooleanFunctions(BooleanFunctions other) : base(other)
 {
     _arg = Clone(other._arg);
     _funcType = other._funcType;
 }
예제 #13
0
 public BooleanFunctions(FT funcType, Query arg)
 {
     _arg = arg;
     _funcType = funcType;
 }
예제 #14
0
 public NodeFunctions(FT funcType, Query arg)
 {
     _funcType = funcType;
     _arg = arg;
 }
예제 #15
0
 public BooleanFunctions(FT funcType, Query arg)
 {
     _arg      = arg;
     _funcType = funcType;
 }
예제 #16
0
 public NumberFunctions(FT ftype, Query?arg)
 {
     _arg   = arg;
     _ftype = ftype;
 }
예제 #17
0
 private BooleanFunctions(BooleanFunctions other) : base(other)
 {
     _arg      = Clone(other._arg);
     _funcType = other._funcType;
 }
예제 #18
0
 private NumberFunctions(NumberFunctions other) : base(other)
 {
     _arg   = Clone(other._arg);
     _ftype = other._ftype;
 }
예제 #19
0
 private BooleanFunctions(BooleanFunctions other) : base(other) {
     this.arg      = Clone(other.arg);
     this.funcType = other.funcType;
 }
 public BooleanFunctions(FT funcType, Query arg)
 {
     this.arg      = arg;
     this.funcType = funcType;
 }