feat: add type definition and other function categories for number

This commit is contained in:
Glen Whitney 2025-03-30 20:00:07 -07:00
parent 183a894868
commit 040ec377a1
8 changed files with 26 additions and 6 deletions

7
src/nanomath.js Normal file
View file

@ -0,0 +1,7 @@
import {numbers} from './numbers.js'
for (const key in numbers) {
for (const subkey in numbers[key]) {
console.log(`${key}.${subkey} =`, numbers[key][subkey])
}
}

3
src/number/Number.js Normal file
View file

@ -0,0 +1,3 @@
export const Number = {
test: n => typeof n === 'number'
}

4
src/number/all.js Normal file
View file

@ -0,0 +1,4 @@
export * as typeDefinition from './Number.js'
export * as arithmetic from './arithmetic.js'
export * as type from './type.js'
export * as utils from './utils.js'

View file

@ -1,4 +1,4 @@
import {number, plain} from './type'
import {plain} from './tools.js'
export const abs = plain(Math.abs)
export const absquare = plain(a => a*a)

4
src/number/tools.js Normal file
View file

@ -0,0 +1,4 @@
import {Number} from "./Number.js"
export const plain = f =>
[Array(f.length).fill(Number), {returns: Number, behavior: f}]

View file

@ -1,6 +1,4 @@
export const number = {
test: n => typeof n === 'number'
}
import {plain} from './tools.js'
export plain = f =>
[Array(f.length).fill(number), {returns: number, behavior: f}]
// Not much to do so far when there is only one type
export const number = plain(a => a)

3
src/number/utils.js Normal file
View file

@ -0,0 +1,3 @@
import {plain} from './tools.js'
export const clone = plain(a => a)

1
src/numbers.js Normal file
View file

@ -0,0 +1 @@
export * as numbers from './number/all.js'