BREAKING: Migrate math functions to keyword args (#6491)

This commit is contained in:
Jonathan Tran
2025-04-26 19:33:41 -04:00
committed by GitHub
parent d7e80b3cc7
commit 0f88598dc0
32 changed files with 586 additions and 537 deletions

View File

@ -5,7 +5,7 @@
fn cond = (bools) => {
return (a, b) => {
x = min(max(-1, a-b), 1) + 1
x = min([max([-1, a-b]), 1]) + 1
return bools[x]
}
}