René's URL Explorer Experiment


Title: BREAKING CHANGE: Unify Math & Mathf. Make every method in Math polymorphic by MaxGraey · Pull Request #2335 · AssemblyScript/assemblyscript · GitHub

Open Graph Title: BREAKING CHANGE: Unify Math & Mathf. Make every method in Math polymorphic by MaxGraey · Pull Request #2335 · AssemblyScript/assemblyscript

X Title: BREAKING CHANGE: Unify Math & Mathf. Make every method in Math polymorphic by MaxGraey · Pull Request #2335 · AssemblyScript/assemblyscript

Description: In this PR we're doing several breaking changes: move all detailed implementations to std/util/math make all Math's methods polymorphic remove non-standard NativeMath#scalebn remove non-standard NativeMath#rem remove non-standard NativeMath#mod (but not tests) remove NativeMathf completely for now, we have only single Math.random (for f64 type) Caveats: I have observed quite often the script that users from JS for example: function foo(x: i32, y: i32): i32 { let res = Math.floor(x / y) as i32; return res; } Before this PR this will create unnecessary cast to f64, Math.floor and downcast to i32. With this PR this code now equivalent to x / y without all this unnecessary work due to Math.floor, Math.trunc and etc accept integers and pass through it "as is". Now following code will generate a compilation error: const cos3 = Math.cos(3); // -> ERROR: Math.cos accept only f32 or f64 types // Solution: it may be fixed as Math.cos(3.0) const x: i32 = 123; const sqr = Math.sqrt(x); // -> ERROR: Math.sqrt accept only f32 or f64 types // Solution: Math.sqrt(x as f64) This is the most painful caveat, which can lead to many breaking changes in some code. Perhaps we could add new generic builtin helper which forces parameter type to float. Something like: // builtin will be equivalent to this: type OnlyFloat = T extends f32 | f64 ? T : f64 function sqrt(x: T): OnlyFloat { if (isInteger()) { return builtin_sqrt(x as f64) as OnlyFloat; } if (isFloat()) { return builtin_sqrt(x) as OnlyFloat; } } // now we can use integer inputs which will forced to f64 for outputs but safely preserve f32 const sqrt3 = sqrt(3); // infer as sqrt(x) -> f64 Thoughts? I've read the contributing guidelines I've added my name and email to the NOTICE file

Open Graph Description: In this PR we're doing several breaking changes: move all detailed implementations to std/util/math make all Math's methods polymorphic remove non-standard NativeMath#scalebn remove non-st...

X Description: In this PR we're doing several breaking changes: move all detailed implementations to std/util/math make all Math's methods polymorphic remove non-standard NativeMath#scalebn remov...

Opengraph URL: https://github.com/AssemblyScript/assemblyscript/pull/2335

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/checks(.:format)
route-controllerpull_requests
route-actionchecks
fetch-noncev2:d93ad266-58be-3529-17f4-68785775bad6
current-catalog-service-hash87dc3bc62d9b466312751bfd5f889726f4f1337bdff4e8be7da7c93d6c00a25a
request-id82FE:2AE61:7C791C5:A5C1398:696DFC8F
html-safe-nonce509e9c936c858049536fef84bbfa5b894573a06f7273e5f81e7ffc2b01e14334
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4MkZFOjJBRTYxOjdDNzkxQzU6QTVDMTM5ODo2OTZERkM4RiIsInZpc2l0b3JfaWQiOiI3NTk5ODI2ODI1MzgyODUzNzc1IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacbb135eb275ea3ca9a50b0e1817b0fc0868890de1cc1d6e664a621b977050e745
hovercard-subject-tagpull_request:978730091
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,checks,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/checks
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/AssemblyScript/assemblyscript/pull/2335/checks
twitter:imagehttps://avatars.githubusercontent.com/u/1301959?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/1301959?s=400&v=4
og:image:altIn this PR we're doing several breaking changes: move all detailed implementations to std/util/math make all Math's methods polymorphic remove non-standard NativeMath#scalebn remove non-st...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None4922b452d03cd8dbce479d866a11bc25b59ef6ee2da23aa9b0ddefa6bd4d0064
turbo-cache-controlno-preview
go-importgithub.com/AssemblyScript/assemblyscript git https://github.com/AssemblyScript/assemblyscript.git
octolytics-dimension-user_id28916798
octolytics-dimension-user_loginAssemblyScript
octolytics-dimension-repository_id105138356
octolytics-dimension-repository_nwoAssemblyScript/assemblyscript
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id105138356
octolytics-dimension-repository_network_root_nwoAssemblyScript/assemblyscript
turbo-body-classeslogged-out env-production page-responsive full-width full-width-p-0
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7e5ae23c70136152637ceee8d6faceb35596ec46
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FAssemblyScript%2Fassemblyscript%2Fpull%2F2335%2Fchecks
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FAssemblyScript%2Fassemblyscript%2Fpull%2F2335%2Fchecks
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Fchecks&source=header-repo&source_repo=AssemblyScript%2Fassemblyscript
Reloadhttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks
Reloadhttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks
Reloadhttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks
AssemblyScript https://patch-diff.githubusercontent.com/AssemblyScript
assemblyscripthttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript
Please reload this pagehttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FAssemblyScript%2Fassemblyscript
Fork 682 https://patch-diff.githubusercontent.com/login?return_to=%2FAssemblyScript%2Fassemblyscript
Star 17.8k https://patch-diff.githubusercontent.com/login?return_to=%2FAssemblyScript%2Fassemblyscript
Code https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript
Issues 175 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/issues
Pull requests 17 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pulls
Actions https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/actions
Wiki https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/security
Please reload this pagehttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks
Insights https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pulse
Code https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript
Issues https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/issues
Pull requests https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pulls
Actions https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/actions
Wiki https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/wiki
Security https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/security
Insights https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2FAssemblyScript%2Fassemblyscript%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2FAssemblyScript%2Fassemblyscript%2Fissues%2Fnew%2Fchoose
MaxGraeyhttps://patch-diff.githubusercontent.com/MaxGraey
AssemblyScript:mainhttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/tree/main
MaxGraey:poly-mathhttps://patch-diff.githubusercontent.com/MaxGraey/assemblyscript/tree/poly-math
Conversation 2 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335
Commits 14 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/commits
Checks 0 https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks
Files changed https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/files
Please reload this pagehttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks
Please reload this pagehttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks
BREAKING CHANGE: Unify Math & Mathf. Make every method in Math polymorphic https://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks#top
Please reload this pagehttps://patch-diff.githubusercontent.com/AssemblyScript/assemblyscript/pull/2335/checks
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.