-
Notifications
You must be signed in to change notification settings - Fork 2
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
BigInt support #11
Comments
I will wait until TypeScript supports BigInt (planned in August 2018 according to the latest roadmap). |
Any updates on that? |
@1valdis Oh, thank you for the interest in this feature :) I started investigating this seriously, and found that there is no way to use |
@smikitky I believe it'll be enough to have bounded ranges for now. How about making just a bounded version, and adding unbounded later (if even)? Throw if trying to use an unbounded initializer with bigint option? Offtopic |
@smikitky Any chance this still on the roadmap? |
@jkchuynh829 I'm still waitng for this issue to be resolved. |
Steps
new MultiRange([[555n, 999n]])
)We will not do automatic type conversions to/from plain numbers. You should use use either
number
orbigint
exclusively within a single instance of MultiRange.The text was updated successfully, but these errors were encountered: