-
-
Notifications
You must be signed in to change notification settings - Fork 906
feat!: migrate math/base/ops/imul
to number/int32/base/mul
#5734
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
kgryte
merged 7 commits into
stdlib-js:develop
from
gururaj1512:migrate-math-base-ops-imul
Mar 8, 2025
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c528ca7
feat: add `number/int32/base/mul`
gururaj1512 b70a6d6
remove: remove `imul` from namespace
gururaj1512 2540748
refactor: update paths
gururaj1512 b830e28
remove: remove `math/base/ops/imul`
gururaj1512 7dca603
Merge branch 'develop' into migrate-math-base-ops-imul
kgryte fb45762
test: resolve test failure
kgryte a63fd20
docs: update REPL help
kgryte File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
84 changes: 42 additions & 42 deletions
84
lib/node_modules/@stdlib/_tools/eslint/rules/no-builtin-math/lib/replacements.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
{ | ||
"E": "@stdlib/constants/float64/e", | ||
"LN2": "@stdlib/constants/float64/ln-two", | ||
"LN10": "@stdlib/constants/float64/ln-ten", | ||
"LOG2E": "@stdlib/constants/float64/log2-e", | ||
"LOG10E": "@stdlib/constants/float64/log10-e", | ||
"PI": "@stdlib/constants/float64/pi", | ||
"SQRT1_2": "@stdlib/constants/float64/sqrt-half", | ||
"SQRT2": "@stdlib/constants/float64/sqrt-two", | ||
"abs": "@stdlib/math/base/special/abs", | ||
"acos": "@stdlib/math/base/special/acos", | ||
"acosh": "@stdlib/math/base/special/acosh", | ||
"asin": "@stdlib/math/base/special/asin", | ||
"asinh": "@stdlib/math/base/special/asinh", | ||
"atan": "@stdlib/math/base/special/atan", | ||
"atanh": "@stdlib/math/base/special/atanh", | ||
"atan2": "@stdlib/math/base/special/atan2", | ||
"cbrt": "@stdlib/math/base/special/cbrt", | ||
"ceil": "@stdlib/math/base/special/ceil", | ||
"cos": "@stdlib/math/base/special/cos", | ||
"cosh": "@stdlib/math/base/special/cosh", | ||
"exp": "@stdlib/math/base/special/exp", | ||
"expm1": "@stdlib/math/base/special/expm1", | ||
"floor": "@stdlib/math/base/special/floor", | ||
"fround": "@stdlib/number/float64/base/to-float32", | ||
"hypot": "@stdlib/math/base/special/hypot", | ||
"imul": "@stdlib/math/base/ops/imul", | ||
"log": "@stdlib/math/base/special/ln", | ||
"log1p": "@stdlib/math/base/special/log1p", | ||
"log10": "@stdlib/math/base/special/log10", | ||
"log2": "@stdlib/math/base/special/log2", | ||
"max": "@stdlib/math/base/special/max", | ||
"min": "@stdlib/math/base/special/min", | ||
"pow": "@stdlib/math/base/special/pow", | ||
"random": "@stdlib/random/base/randu", | ||
"round": "@stdlib/math/base/special/round", | ||
"sign": "@stdlib/math/base/special/signum", | ||
"sin": "@stdlib/math/base/special/sin", | ||
"sinh": "@stdlib/math/base/special/sinh", | ||
"sqrt": "@stdlib/math/base/special/sqrt", | ||
"tan": "@stdlib/math/base/special/tan", | ||
"tanh": "@stdlib/math/base/special/tanh", | ||
"trunc": "@stdlib/math/base/special/trunc" | ||
"E": "@stdlib/constants/float64/e", | ||
"LN2": "@stdlib/constants/float64/ln-two", | ||
"LN10": "@stdlib/constants/float64/ln-ten", | ||
"LOG2E": "@stdlib/constants/float64/log2-e", | ||
"LOG10E": "@stdlib/constants/float64/log10-e", | ||
"PI": "@stdlib/constants/float64/pi", | ||
"SQRT1_2": "@stdlib/constants/float64/sqrt-half", | ||
"SQRT2": "@stdlib/constants/float64/sqrt-two", | ||
"abs": "@stdlib/math/base/special/abs", | ||
"acos": "@stdlib/math/base/special/acos", | ||
"acosh": "@stdlib/math/base/special/acosh", | ||
"asin": "@stdlib/math/base/special/asin", | ||
"asinh": "@stdlib/math/base/special/asinh", | ||
"atan": "@stdlib/math/base/special/atan", | ||
"atanh": "@stdlib/math/base/special/atanh", | ||
"atan2": "@stdlib/math/base/special/atan2", | ||
"cbrt": "@stdlib/math/base/special/cbrt", | ||
"ceil": "@stdlib/math/base/special/ceil", | ||
"cos": "@stdlib/math/base/special/cos", | ||
"cosh": "@stdlib/math/base/special/cosh", | ||
"exp": "@stdlib/math/base/special/exp", | ||
"expm1": "@stdlib/math/base/special/expm1", | ||
"floor": "@stdlib/math/base/special/floor", | ||
"fround": "@stdlib/number/float64/base/to-float32", | ||
"hypot": "@stdlib/math/base/special/hypot", | ||
"imul": "@stdlib/number/int32/base/mul", | ||
"log": "@stdlib/math/base/special/ln", | ||
"log1p": "@stdlib/math/base/special/log1p", | ||
"log10": "@stdlib/math/base/special/log10", | ||
"log2": "@stdlib/math/base/special/log2", | ||
"max": "@stdlib/math/base/special/max", | ||
"min": "@stdlib/math/base/special/min", | ||
"pow": "@stdlib/math/base/special/pow", | ||
"random": "@stdlib/random/base/randu", | ||
"round": "@stdlib/math/base/special/round", | ||
"sign": "@stdlib/math/base/special/signum", | ||
"sin": "@stdlib/math/base/special/sin", | ||
"sinh": "@stdlib/math/base/special/sinh", | ||
"sqrt": "@stdlib/math/base/special/sqrt", | ||
"tan": "@stdlib/math/base/special/tan", | ||
"tanh": "@stdlib/math/base/special/tanh", | ||
"trunc": "@stdlib/math/base/special/trunc" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,8 @@ | |
'use strict'; | ||
|
||
var valid = []; | ||
var test; | ||
|
||
test = { | ||
var test = { | ||
'code': [ | ||
'// VARIABLES //', | ||
'', | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
lib/node_modules/@stdlib/namespace/alias2standalone/data/data.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...s/@stdlib/math/base/ops/imul/package.json → ...stdlib/number/int32/base/mul/package.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.