Exemplo n.º 1
0
 public static bool IsRegistered(MathOperationType operationType, params Type[] operandTypes) =>
 !(Get(operationType, operandTypes) == null);
Exemplo n.º 2
0
 public static MathOperation Get(MathOperationType operationType, params Type[] operandTypes) =>
 GetAll(operandTypes).Find(o => o.OperationType == operationType);