Currently, the functions and the predicates are organized by scope. It would be beneficial to add a new level to the taxon by specifying the family. It will let us group together the functions add, subtract, increment ...
It could be done based on the abstract class inherited. The name of this higher level class is BaseArithmeticFunction, we could transform it in Arithmetic and have this kind of hierarchy
- Numeric
- Arithmetic
- add
- decrement
- divide
- increment
- multiply
- subtract
- ...
- Rounding
- ...
- Text
Also the full taxon can be perceived as Scope > Family > Function (or Predicate)
Currently, the functions and the predicates are organized by scope. It would be beneficial to add a new level to the taxon by specifying the family. It will let us group together the functions
add,subtract,increment...It could be done based on the abstract class inherited. The name of this higher level class is
BaseArithmeticFunction, we could transform it inArithmeticand have this kind of hierarchyAlso the full taxon can be perceived as
Scope > Family > Function (or Predicate)FunctionandPredicate