nanomath/src/numbers.js
Glen Whitney bfc64f3789
All checks were successful
/ test (pull_request) Successful in 19s
feat: implicit convert BooleanT to NumberT
Also adds implicit conversion configuration option to Type constructor,
  and institutes a numbers-only bundle, and supports argument matching
  with implicit conversions.

  Still need to test that a behavior that invokes implicit conversion ends up
  with the conversion operation as a dependency (and so regenerates itself if
  the conversion changes).
2025-04-10 22:47:30 -07:00

7 lines
216 B
JavaScript

import * as numbers from './number/all.js'
import * as generics from './generic/all.js'
import {TypeDispatcher} from '#core/TypeDispatcher.js'
const math = new TypeDispatcher(numbers, generics)
export default math