Exemplo n.º 1
0
 HierarchyLevel.COMPLEX => ifCom(nums.Select(n => (n as ComplexNumber)).ToArray()),
Exemplo n.º 2
0
 HierarchyLevel.RATIONAL => ifRat(nums.Select(n => (n as RationalNumber)).ToArray()),
Exemplo n.º 3
0
 HierarchyLevel.REAL => ifReal(nums.Select(n => (n as RealNumber)).ToArray()),
Exemplo n.º 4
0
 HierarchyLevel.INTEGER => ifInt(nums.Select(n => (n as IntegerNumber)).ToArray()),