functions2 top-level property

Map<String, num Function(num x, num y)> functions2
final

Common mathematical functions (2 arguments).

Implementation

final functions2 = {
  'atan2': (num x, num y) => atan2(x, y),
  'max': (num x, num y) => max(x, y),
  'min': (num x, num y) => min(x, y),
  'pow': (num x, num y) => pow(x, y),
};