From 183a8948687e851ca304492f64a489f0e8b82132 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Sat, 29 Mar 2025 17:12:35 -0700 Subject: [PATCH] feat: add arithmetic functions for number --- src/number/arithmetic.js | 21 +++++++++++++++++++++ src/number/type.js | 6 ++++++ 2 files changed, 27 insertions(+) create mode 100644 src/number/arithmetic.js create mode 100644 src/number/type.js diff --git a/src/number/arithmetic.js b/src/number/arithmetic.js new file mode 100644 index 0000000..e206736 --- /dev/null +++ b/src/number/arithmetic.js @@ -0,0 +1,21 @@ +import {number, plain} from './type' + +export const abs = plain(Math.abs) +export const absquare = plain(a => a*a) +export const add = plain((a, b) => a + b) +export const divide = plain((a, b) => a / b) +export const cbrt = plain(a => { + if (a === 0) return a + const negate = a < 0 + if (negate) a = -a + let result = a + if (isFinite(a)) { + result = Math.exp(Math.log(x) / 3) + result = (a / (result * result) + (2 * result)) / 3 + } + return negate ? -result : result +}) +export const invert = plain(a => 1/a) +export const multiply = plain((a, b) => a * b) +export const negate = plain(a => -a) +export const quotient = plain((a,b) => Math.floor(a/b)) diff --git a/src/number/type.js b/src/number/type.js new file mode 100644 index 0000000..ece6060 --- /dev/null +++ b/src/number/type.js @@ -0,0 +1,6 @@ +export const number = { + test: n => typeof n === 'number' +} + +export plain = f => + [Array(f.length).fill(number), {returns: number, behavior: f}]