feat: Add complex argument function arg
All checks were successful
/ test (pull_request) Successful in 17s

Also removes circular imports from nanomath
This commit is contained in:
Glen Whitney 2025-04-24 13:09:15 -07:00
parent 474cc53d68
commit 8da23a84be
24 changed files with 91 additions and 90 deletions

View file

@ -1,7 +1,6 @@
import {ReturnsAs} from './helpers.js'
import {match} from '#core/helpers.js'
import {Returns} from '#core/Type.js'
import {Any, Passthru, matched} from '#core/TypePatterns.js'
import {Any, Passthru, match, matched} from '#core/TypePatterns.js'
import {boolnum} from '#number/helpers.js'
export const equal = match([Any, Any], (math, [T, U]) => {