예제 #1
0
파일: Degree.cs 프로젝트: apodavalov/FLaG
 public override Expression ToRegExp()
 {
     return(Exponent.ToRegExp(Entity));
 }
예제 #2
0
파일: Variable.cs 프로젝트: apodavalov/FLaG
        public override bool Equals(Exponent other)
        {
            Variable variable = other as Variable;

            return(Equals(variable));
        }
예제 #3
0
파일: Quantity.cs 프로젝트: apodavalov/FLaG
        public override bool Equals(Exponent other)
        {
            Quantity quantity = other as Quantity;

            return(Equals(quantity));
        }