Beispiel #1
0
 public IInterpetedOperation <IInterpetedAnyType> LessThanOperation(ILessThanOperation co)
 {
     if (backing.TryGetValue(co, out var res))
     {
         return(res);
     }
     else
     {
         var op = new InterpetedLessThanOperation();
         backing.Add(co, op);
         op.Init(
             co.Left.Convert(this).Cast <IInterpetedOperation <IBoxedDouble> >(),
             co.Right.Convert(this).Cast <IInterpetedOperation <IBoxedDouble> >());
         return(op);
     }
 }
Beispiel #2
0
 public IReadOnlyList <IMemberDefinition> LessThanOperation(ILessThanOperation co)
 {
     return(Walk(co.Operands));
 }
Beispiel #3
0
 public Nothing LessThanOperation(ILessThanOperation co)
 {
     Push(co).Walk(co.Operands);
     return(new Nothing());
 }