Ejemplo n.º 1
0
        public static AxiomFilter Build(this GroupEnd last)
        {
            var end = ((IJunction)last);

            return(new AxiomFilter()
            {
                Format = end.GetToken(),
                Axioms = end.GetAxioms(),
                Options = AxiomFilterOptions.Equation
            });
        }
Ejemplo n.º 2
0
 public static ILogicalOperator Or(this GroupEnd left)
 {
     return(new Or(left));
 }
Ejemplo n.º 3
0
 public static ILogicalOperator And(this GroupEnd left)
 {
     return(new And(left));
 }
Ejemplo n.º 4
0
 public static GroupEnd EndGroup(this GroupEnd last)
 {
     return(new GroupEnd(last));
 }
Ejemplo n.º 5
0
 public static Not Not(this GroupEnd parent)
 {
     return(new Not(parent));
 }