Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Integers and decimals?#4

joakim started this conversation inIdeas
Discussion options

Suggestion

Add an#int subtype of#number, something along the lines ofthis solution, with a#dec subtype to complement it.

Question: Should/ division of two#int numbers always result in a#number?

Thediv operator can provide integer division.

a:15-- inferred as #intb:4-- inferred as #inta/b--> #number 3.7515/3--> #number 5adivb--> #int 3

Themod andrem operators provide the modulo (floored) and remainder (truncated) of a division, respectively.

-5mod3--> #int 1-5rem3--> #int -2

Testing for an#int could be (in ECMAScript)typeof x === 'number' && x % 1 === 0, and converting to an#int would be simplyNumber.parseInt(x).

Arbitrary precision

#bigint should of course also be supported, as well as (eventually)#bigdec and (hopefully)#ratio.

Division of two#bigint numbers could result in a#ratio.#ratio must be a value type, so as a hack itcould be implemented as a tuple of(@ratio, numerator, denominator).

Possible numeric types

  • #number
    • #int
    • #dec
  • #bigint
  • #bigdec
  • #ratio
You must be logged in to vote

Replies: 0 comments

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Category
Ideas
Labels
None yet
1 participant
@joakim

[8]ページ先頭

©2009-2025 Movatter.jp