Have you considered adding a `sum(a, b)` function to the `math`package for adding two numbers together. Example implementation: ``` T sum<T extends num>(T lhs, T rhs) => (lhs + rhs) as T; ``` Nice to to have if you'd like to e.g. `list.reduce(sum)`