Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 85146705c7de
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bf3fe80d65a4
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 14, 2014

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f8b2b73 View commit details
  2. Copy the full SHA
    bf3fe80 View commit details
Showing with 21 additions and 7 deletions.
  1. +21 −7 opal/corelib/numeric.rb
28 changes: 21 additions & 7 deletions opal/corelib/numeric.rb
Original file line number Diff line number Diff line change
@@ -454,8 +454,8 @@ def zero?
`self == 0`
end

# Since bitwise operations are 32 bit, declare it to be so.
def size
# Just a stub, JS is 32bit for bitwise ops though
4
end

@@ -464,15 +464,29 @@ def nan?
end

def finite?
`self == Infinity || self == -Infinity`
`self != Infinity && self != -Infinity`
end

def infinite?
if `self == Infinity`
`+1`
elsif `self == -Infinity`
`-1`
end
%x{
if (self == Infinity) {
return +1;
}
else if (self == -Infinity) {
return -1;
}
else {
return nil;
}
}
end

def positive?
`1 / self > 0`
end

def negative?
`1 / self < 0`
end
end