Class: Number
Class Method Summary collapse
Instance Method Summary collapse
- #%(other) ⇒ Object (also: #modulo)
- #&(other) ⇒ Object
- #*(other) ⇒ Object
- #**(other) ⇒ Object
- #+(other) ⇒ Object
- #+@ ⇒ Object
- #-(other) ⇒ Object
- #-@ ⇒ Object
- #/(other) ⇒ Object (also: #fdiv)
- #<(other) ⇒ Object
- #<<(count) ⇒ Object
- #<=(other) ⇒ Object
- #<=>(other) ⇒ Object
- #==(other) ⇒ Object (also: #===, #eql?)
- #>(other) ⇒ Object
- #>=(other) ⇒ Object
- #>>(count) ⇒ Object
- #[](bit) ⇒ Object
- #^(other) ⇒ Object
- #__id__ ⇒ Object (also: #object_id)
- #abs ⇒ Object (also: #magnitude)
- #abs2 ⇒ Object
- #allbits?(mask) ⇒ Boolean
- #angle ⇒ Object (also: #arg, #phase)
- #anybits?(mask) ⇒ Boolean
- #bit_length ⇒ Object
- #ceil(ndigits = 0) ⇒ Object
- #chr(encoding = undefined) ⇒ Object
- #coerce(other) ⇒ Object
- #denominator ⇒ Object
- #digits(base = 10) ⇒ Object
- #divmod(other) ⇒ Object
- #downto(stop, &block) ⇒ Object
- #equal?(other) ⇒ Boolean
- #even? ⇒ Boolean
- #finite? ⇒ Boolean
- #floor(ndigits = 0) ⇒ Object
- #gcd(other) ⇒ Object
- #gcdlcm(other) ⇒ Object
- #infinite? ⇒ Boolean
- #instance_of?(klass) ⇒ Boolean
- #integer? ⇒ Boolean
- #is_a?(klass) ⇒ Boolean (also: #kind_of?)
- #lcm(other) ⇒ Object
- #nan? ⇒ Boolean
- #negative? ⇒ Boolean
- #next ⇒ Object (also: #succ)
- #next_float ⇒ Object
- #nobits?(mask) ⇒ Boolean
- #nonzero? ⇒ Boolean
- #numerator ⇒ Object
- #odd? ⇒ Boolean
- #ord ⇒ Object
- #positive? ⇒ Boolean
- #pow(b, m = undefined) ⇒ Object
- #pred ⇒ Object
- #prev_float ⇒ Object
- #quo(other) ⇒ Object
- #rationalize(eps = undefined) ⇒ Object
- #remainder(y) ⇒ Object
- #round(ndigits = undefined) ⇒ Object
-
#size ⇒ Object
Since bitwise operations are 32 bit, declare it to be so.
- #times(&block) ⇒ Object
- #to_f ⇒ Object
- #to_i ⇒ Object (also: #to_int)
- #to_r ⇒ Object
- #to_s(base = 10) ⇒ Object (also: #inspect)
- #truncate(ndigits = 0) ⇒ Object
- #upto(stop, &block) ⇒ Object
- #zero? ⇒ Boolean
- #|(other) ⇒ Object
- #~ ⇒ Object
Methods inherited from Numeric
#__coerced__ , #clone , #conj , #div , #dup , #i , #imag , #polar , #real , #real? , #rect , #step , #to_c
Methods included from Comparable
Class Method Details
Instance Method Details
#%(other) ⇒ Object Also known as: modulo
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
# File 'opal/opal/corelib/number.rb', line 84 def %(other) %x{ if (other.$$is_number) { if (other == -Infinity) { return other; } else if (other == 0) { #{::Kernel .raise ::ZeroDivisionError , 'divided by 0'}; } else if (other < 0 || self < 0) { return (self % other + other) % other; } else { return self % other; } } else { return #{__coerced__ :%, other}; } } end
#&(other) ⇒ Object
106 107 108 109 110 111 112 113 114 115
# File 'opal/opal/corelib/number.rb', line 106 def &(other) %x{ if (other.$$is_number) { return self & other; } else { return #{__coerced__ :&, other}; } } end
#*(other) ⇒ Object
62 63 64 65 66 67 68 69 70 71
# File 'opal/opal/corelib/number.rb', line 62 def *(other) %x{ if (other.$$is_number) { return self * other; } else { return #{__coerced__ :*, other}; } } end
#**(other) ⇒ Object
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
# File 'opal/opal/corelib/number.rb', line 250 def **(other) if ::Integer === other if !(::Integer === self) || other > 0 `Math.pow(self, other)` else ::Rational .new (self, 1)**other end elsif self < 0 && (::Float === other || ::Rational === other) ::Complex .new (self, 0)**other.to_f elsif `other.$$is_number != null` `Math.pow(self, other)` else __coerced__ :**, other end end
#+(other) ⇒ Object
40 41 42 43 44 45 46 47 48 49
# File 'opal/opal/corelib/number.rb', line 40 def +(other) %x{ if (other.$$is_number) { return self + other; } else { return #{__coerced__ :+, other}; } } end
#+@ ⇒ Object
238 239 240
# File 'opal/opal/corelib/number.rb', line 238 def +@ `+self` end
#-(other) ⇒ Object
51 52 53 54 55 56 57 58 59 60
# File 'opal/opal/corelib/number.rb', line 51 def -(other) %x{ if (other.$$is_number) { return self - other; } else { return #{__coerced__ :-, other}; } } end
#-@ ⇒ Object
242 243 244
# File 'opal/opal/corelib/number.rb', line 242 def -@ `-self` end
#/(other) ⇒ Object Also known as: fdiv
73 74 75 76 77 78 79 80 81 82
# File 'opal/opal/corelib/number.rb', line 73 def /(other) %x{ if (other.$$is_number) { return self / other; } else { return #{__coerced__ :/, other}; } } end
#<(other) ⇒ Object
139 140 141 142 143 144 145 146 147 148
# File 'opal/opal/corelib/number.rb', line 139 def <(other) %x{ if (other.$$is_number) { return self < other; } else { return #{__coerced__ :<, other}; } } end
#<<(count) ⇒ Object
212 213 214 215 216
# File 'opal/opal/corelib/number.rb', line 212 def <<(count) count = ::Opal .coerce_to! count, ::Integer , :to_int `#{count} > 0 ? self << #{count} : self >> -#{count}` end
#<=(other) ⇒ Object
150 151 152 153 154 155 156 157 158 159
# File 'opal/opal/corelib/number.rb', line 150 def <=(other) %x{ if (other.$$is_number) { return self <= other; } else { return #{__coerced__ :<=, other}; } } end
#<=>(other) ⇒ Object
206 207 208 209 210
# File 'opal/opal/corelib/number.rb', line 206 def <=>(other) `spaceship_operator(self, other)` rescue ::ArgumentError nil end
#==(other) ⇒ Object Also known as: ===, eql?
266 267 268 269 270 271 272 273 274 275 276 277 278
# File 'opal/opal/corelib/number.rb', line 266 def ==(other) %x{ if (other.$$is_number) { return self.valueOf() === other.valueOf(); } else if (#{other.respond_to? :==}) { return #{other == self}; } else { return false; } } end
#>(other) ⇒ Object
161 162 163 164 165 166 167 168 169 170
# File 'opal/opal/corelib/number.rb', line 161 def >(other) %x{ if (other.$$is_number) { return self > other; } else { return #{__coerced__ :>, other}; } } end
#>=(other) ⇒ Object
172 173 174 175 176 177 178 179 180 181
# File 'opal/opal/corelib/number.rb', line 172 def >=(other) %x{ if (other.$$is_number) { return self >= other; } else { return #{__coerced__ :>=, other}; } } end
#>>(count) ⇒ Object
218 219 220 221 222
# File 'opal/opal/corelib/number.rb', line 218 def >>(count) count = ::Opal .coerce_to! count, ::Integer , :to_int `#{count} > 0 ? self >> #{count} : self << -#{count}` end
#[](bit) ⇒ Object
224 225 226 227 228 229 230 231 232 233 234 235 236
# File 'opal/opal/corelib/number.rb', line 224 def [](bit) bit = ::Opal .coerce_to! bit, ::Integer , :to_int %x{ if (#{bit} < 0) { return 0; } if (#{bit} >= 32) { return #{ self } < 0 ? 1 : 0; } return (self >> #{bit}) & 1; } end
#^(other) ⇒ Object
128 129 130 131 132 133 134 135 136 137
# File 'opal/opal/corelib/number.rb', line 128 def ^(other) %x{ if (other.$$is_number) { return self ^ other; } else { return #{__coerced__ :^, other}; } } end
#__id__ ⇒ Object Also known as: object_id
36 37 38
# File 'opal/opal/corelib/number.rb', line 36 def __id__ `(self * 2) + 1` end
#abs ⇒ Object Also known as: magnitude
282 283 284
# File 'opal/opal/corelib/number.rb', line 282 def abs `Math.abs(self)` end
#abs2 ⇒ Object
286 287 288
# File 'opal/opal/corelib/number.rb', line 286 def abs2 `Math.abs(self * self)` end
#allbits?(mask) ⇒ Boolean
Returns:
- (Boolean )
290 291 292 293
# File 'opal/opal/corelib/number.rb', line 290 def allbits?(mask) mask = ::Opal .coerce_to! mask, ::Integer , :to_int `(self & mask) == mask` end
#angle ⇒ Object Also known as: arg, phase
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
# File 'opal/opal/corelib/number.rb', line 300 def angle return self if nan? %x{ if (self == 0) { if (1 / self > 0) { return 0; } else { return Math.PI; } } else if (self < 0) { return Math.PI; } else { return 0; } } end
#anybits?(mask) ⇒ Boolean
Returns:
- (Boolean )
295 296 297 298
# File 'opal/opal/corelib/number.rb', line 295 def anybits?(mask) mask = ::Opal .coerce_to! mask, ::Integer , :to_int `(self & mask) !== 0` end
#bit_length ⇒ Object
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
# File 'opal/opal/corelib/number.rb', line 321 def bit_length unless ::Integer === self ::Kernel .raise ::NoMethodError .new ("undefined method `bit_length` for #{self}:Float", 'bit_length') end %x{ if (self === 0 || self === -1) { return 0; } var result = 0, value = self < 0 ? ~self : self; while (value != 0) { result += 1; value >>>= 1; } return result; } end
#ceil(ndigits = 0) ⇒ Object
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
# File 'opal/opal/corelib/number.rb', line 343 def ceil(ndigits = 0) %x{ var f = #{to_f}; if (f % 1 === 0 && ndigits >= 0) { return f; } var factor = Math.pow(10, ndigits), result = Math.ceil(f * factor) / factor; if (f % 1 === 0) { result = Math.round(result); } return result; } end
#chr(encoding = undefined) ⇒ Object
362 363 364
# File 'opal/opal/corelib/number.rb', line 362 def chr(encoding = undefined) `Opal.enc(String.fromCharCode(self), encoding || "BINARY")` end
#coerce(other) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
# File 'opal/opal/corelib/number.rb', line 16 def coerce(other) %x{ if (other === nil) { #{::Kernel .raise ::TypeError , "can't convert #{other.class} into Float"}; } else if (other.$$is_string) { return [#{::Kernel .Float (other)}, self]; } else if (#{other.respond_to?(:to_f)}) { return [#{::Opal .coerce_to! (other, ::Float , :to_f)}, self]; } else if (other.$$is_number) { return [other, self]; } else { #{::Kernel .raise ::TypeError , "can't convert #{other.class} into Float"}; } } end
#denominator ⇒ Object
366 367 368 369 370 371 372
# File 'opal/opal/corelib/number.rb', line 366 def denominator if nan? || infinite? 1 else super end end
#digits(base = 10) ⇒ Object
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
# File 'opal/opal/corelib/number.rb', line 710 def digits(base = 10) if self < 0 ::Kernel .raise ::Math ::DomainError, 'out of domain' end base = ::Opal .coerce_to! base, ::Integer , :to_int if base < 2 ::Kernel .raise ::ArgumentError , "invalid radix #{base}" end %x{ if (self != parseInt(self)) #{::Kernel .raise ::NoMethodError , "undefined method `digits' for #{inspect}"} var value = self, result = []; if (self == 0) { return [0]; } while (value != 0) { result.push(value % base); value = parseInt(value / base, 10); } return result; } end
#divmod(other) ⇒ Object
739 740 741 742 743 744 745 746 747
# File 'opal/opal/corelib/number.rb', line 739 def divmod(other) if nan? || other.nan? ::Kernel .raise ::FloatDomainError , 'NaN' elsif infinite? ::Kernel .raise ::FloatDomainError , 'Infinity' else super end end
#downto(stop, &block) ⇒ Object
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
# File 'opal/opal/corelib/number.rb', line 374 def downto(stop, &block) unless block_given? return enum_for(:downto, stop) do ::Kernel .raise ::ArgumentError , "comparison of #{self.class} with #{stop.class} failed" unless ::Numeric === stop stop > self ? 0 : self - stop + 1 end end %x{ if (!stop.$$is_number) { #{::Kernel .raise ::ArgumentError , "comparison of #{self.class} with #{stop.class} failed"} } for (var i = self; i >= stop; i--) { block(i); } } self end
#equal?(other) ⇒ Boolean
Returns:
- (Boolean )
394 395 396
# File 'opal/opal/corelib/number.rb', line 394 def equal?(other) self == other || `isNaN(self) && isNaN(other)` end
#even? ⇒ Boolean
Returns:
- (Boolean )
398 399 400
# File 'opal/opal/corelib/number.rb', line 398 def even? `self % 2 === 0` end
#finite? ⇒ Boolean
Returns:
- (Boolean )
782 783 784
# File 'opal/opal/corelib/number.rb', line 782 def finite? `self != Infinity && self != -Infinity && !isNaN(self)` end
#floor(ndigits = 0) ⇒ Object
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
# File 'opal/opal/corelib/number.rb', line 402 def floor(ndigits = 0) %x{ var f = #{to_f}; if (f % 1 === 0 && ndigits >= 0) { return f; } var factor = Math.pow(10, ndigits), result = Math.floor(f * factor) / factor; if (f % 1 === 0) { result = Math.round(result); } return result; } end
#gcd(other) ⇒ Object
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
# File 'opal/opal/corelib/number.rb', line 421 def gcd(other) unless ::Integer === other ::Kernel .raise ::TypeError , 'not an integer' end %x{ var min = Math.abs(self), max = Math.abs(other); while (min > 0) { var tmp = min; min = max % min; max = tmp; } return max; } end
#gcdlcm(other) ⇒ Object
441 442 443
# File 'opal/opal/corelib/number.rb', line 441 def gcdlcm(other) [gcd(other), lcm(other)] end
#infinite? ⇒ Boolean
Returns:
- (Boolean )
786 787 788 789 790 791 792 793 794 795 796 797 798
# File 'opal/opal/corelib/number.rb', line 786 def infinite? %x{ if (self == Infinity) { return +1; } else if (self == -Infinity) { return -1; } else { return nil; } } end
#integer? ⇒ Boolean
Returns:
- (Boolean )
445 446 447
# File 'opal/opal/corelib/number.rb', line 445 def integer? `self % 1 === 0` end
#lcm(other) ⇒ Object
465 466 467 468 469 470 471 472 473 474 475 476 477 478
# File 'opal/opal/corelib/number.rb', line 465 def lcm(other) unless ::Integer === other ::Kernel .raise ::TypeError , 'not an integer' end %x{ if (self == 0 || other == 0) { return 0; } else { return Math.abs(self * other / #{gcd(other)}); } } end
#nan? ⇒ Boolean
Returns:
- (Boolean )
778 779 780
# File 'opal/opal/corelib/number.rb', line 778 def nan? `isNaN(self)` end
#negative? ⇒ Boolean
Returns:
- (Boolean )
804 805 806
# File 'opal/opal/corelib/number.rb', line 804 def negative? `self == -Infinity || 1 / self < 0` end
#next ⇒ Object Also known as: succ
480 481 482
# File 'opal/opal/corelib/number.rb', line 480 def next `self + 1` end
#next_float ⇒ Object
846 847 848 849 850 851 852 853 854 855 856
# File 'opal/opal/corelib/number.rb', line 846 def next_float return ::Float ::INFINITY if self == ::Float ::INFINITY return ::Float ::NAN if nan? if self >= 0 # Math.abs() is needed to handle -0.0 `incrementNumberBit(Math.abs(self))` else `decrementNumberBit(self)` end end
#nobits?(mask) ⇒ Boolean
Returns:
- (Boolean )
484 485 486 487
# File 'opal/opal/corelib/number.rb', line 484 def nobits?(mask) mask = ::Opal .coerce_to! mask, ::Integer , :to_int `(self & mask) == 0` end
#nonzero? ⇒ Boolean
Returns:
- (Boolean )
489 490 491
# File 'opal/opal/corelib/number.rb', line 489 def nonzero? `self == 0 ? nil : self` end
#numerator ⇒ Object
493 494 495 496 497 498 499
# File 'opal/opal/corelib/number.rb', line 493 def numerator if nan? || infinite? self else super end end
#odd? ⇒ Boolean
Returns:
- (Boolean )
501 502 503
# File 'opal/opal/corelib/number.rb', line 501 def odd? `self % 2 !== 0` end
#ord ⇒ Object
505 506 507
# File 'opal/opal/corelib/number.rb', line 505 def ord self end
#positive? ⇒ Boolean
Returns:
- (Boolean )
800 801 802
# File 'opal/opal/corelib/number.rb', line 800 def positive? `self != 0 && (self == Infinity || 1 / self > 0)` end
#pow(b, m = undefined) ⇒ Object
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
# File 'opal/opal/corelib/number.rb', line 509 def pow(b, m = undefined) %x{ if (self == 0) { #{::Kernel .raise ::ZeroDivisionError , 'divided by 0'} } if (m === undefined) { return #{self**b}; } else { if (!(#{::Integer === b})) { #{::Kernel .raise ::TypeError , 'Integer#pow() 2nd argument not allowed unless a 1st argument is integer'} } if (b < 0) { #{::Kernel .raise ::TypeError , 'Integer#pow() 1st argument cannot be negative when 2nd argument specified'} } if (!(#{::Integer === m})) { #{::Kernel .raise ::TypeError , 'Integer#pow() 2nd argument not allowed unless all arguments are integers'} } if (m === 0) { #{::Kernel .raise ::ZeroDivisionError , 'divided by 0'} } return #{(self**b) % m} } } end
#pred ⇒ Object
539 540 541
# File 'opal/opal/corelib/number.rb', line 539 def pred `self - 1` end
#prev_float ⇒ Object
#quo(other) ⇒ Object
543 544 545 546 547 548 549
# File 'opal/opal/corelib/number.rb', line 543 def quo(other) if ::Integer === self super else self / other end end
#rationalize(eps = undefined) ⇒ Object
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
# File 'opal/opal/corelib/number.rb', line 551 def rationalize(eps = undefined) %x{ if (arguments.length > 1) { #{::Kernel .raise ::ArgumentError , "wrong number of arguments (#{`arguments.length`} for 0..1)"}; } } if ::Integer === self ::Rational .new (self, 1) elsif infinite? ::Kernel .raise ::FloatDomainError , 'Infinity' elsif nan? ::Kernel .raise ::FloatDomainError , 'NaN' elsif `eps == null` f, n = ::Math .frexp self f = ::Math .ldexp (f, ::Float ::MANT_DIG).to_i n -= ::Float ::MANT_DIG ::Rational .new (2 * f, 1 << (1 - n)).rationalize (::Rational .new (1, 1 << (1 - n))) else to_r.rationalize(eps) end end
#remainder(y) ⇒ Object
575 576 577
# File 'opal/opal/corelib/number.rb', line 575 def remainder(y) self - y * (self / y).truncate end
#round(ndigits = undefined) ⇒ Object
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
# File 'opal/opal/corelib/number.rb', line 579 def round(ndigits = undefined) if ::Integer === self if `ndigits == null` return self end if ::Float === ndigits && ndigits.infinite? ::Kernel .raise ::RangeError , 'Infinity' end ndigits = ::Opal .coerce_to! (ndigits, ::Integer , :to_int) if ndigits < ::Integer ::MIN ::Kernel .raise ::RangeError , 'out of bounds' end if `ndigits >= 0` return self end ndigits = -ndigits %x{ if (0.415241 * ndigits - 0.125 > #{size}) { return 0; } var f = Math.pow(10, ndigits), x = Math.floor((Math.abs(self) + f / 2) / f) * f; return self < 0 ? -x : x; } else if nan? && `ndigits == null` ::Kernel .raise ::FloatDomainError , 'NaN' end ndigits = ::Opal .coerce_to! (`ndigits || 0`, ::Integer , :to_int) if ndigits <= 0 if nan? ::Kernel .raise ::RangeError , 'NaN' elsif infinite? ::Kernel .raise ::FloatDomainError , 'Infinity' end elsif ndigits == 0 return `Math.round(self)` elsif nan? || infinite? return self end _, exp = ::Math .frexp (self) if ndigits >= (::Float ::DIG + 2) - (exp > 0 ? exp / 4 : exp / 3 - 1) return self end if ndigits < -(exp > 0 ? exp / 3 + 1 : exp / 4) return 0 end `Math.round(self * Math.pow(10, ndigits)) / Math.pow(10, ndigits)` end end
#size ⇒ Object
Since bitwise operations are 32 bit, declare it to be so.
774 775 776
# File 'opal/opal/corelib/number.rb', line 774 def size 4 end
#times(&block) ⇒ Object
644 645 646 647 648 649 650 651 652 653 654
# File 'opal/opal/corelib/number.rb', line 644 def times(&block) return enum_for(:times) { self } unless block %x{ for (var i = 0; i < self; i++) { block(i); } } self end
#to_f ⇒ Object
656 657 658
# File 'opal/opal/corelib/number.rb', line 656 def to_f self end
#to_i ⇒ Object Also known as: to_int
660 661 662
# File 'opal/opal/corelib/number.rb', line 660 def to_i `self < 0 ? Math.ceil(self) : Math.floor(self)` end
#to_r ⇒ Object
#to_s(base = 10) ⇒ Object Also known as: inspect
676 677 678 679 680 681 682 683 684 685 686 687 688 689
# File 'opal/opal/corelib/number.rb', line 676 def to_s (base = 10) base = ::Opal .coerce_to! base, ::Integer , :to_int if base < 2 || base > 36 ::Kernel .raise ::ArgumentError , "invalid radix #{base}" end # Don't lose the negative zero if self == 0 && `1/self === -Infinity` return '-0.0' end `self.toString(base)` end
#truncate(ndigits = 0) ⇒ Object
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
# File 'opal/opal/corelib/number.rb', line 691 def truncate(ndigits = 0) %x{ var f = #{to_f}; if (f % 1 === 0 && ndigits >= 0) { return f; } var factor = Math.pow(10, ndigits), result = parseInt(f * factor, 10) / factor; if (f % 1 === 0) { result = Math.round(result); } return result; } end
#upto(stop, &block) ⇒ Object
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
# File 'opal/opal/corelib/number.rb', line 749 def upto(stop, &block) unless block_given? return enum_for(:upto, stop) do ::Kernel .raise ::ArgumentError , "comparison of #{self.class} with #{stop.class} failed" unless ::Numeric === stop stop < self ? 0 : stop - self + 1 end end %x{ if (!stop.$$is_number) { #{::Kernel .raise ::ArgumentError , "comparison of #{self.class} with #{stop.class} failed"} } for (var i = self; i <= stop; i++) { block(i); } } self end
#zero? ⇒ Boolean
Returns:
- (Boolean )
769 770 771
# File 'opal/opal/corelib/number.rb', line 769 def zero? `self == 0` end
#|(other) ⇒ Object
117 118 119 120 121 122 123 124 125 126
# File 'opal/opal/corelib/number.rb', line 117 def |(other) %x{ if (other.$$is_number) { return self | other; } else { return #{__coerced__ :|, other}; } } end
#~ ⇒ Object
246 247 248
# File 'opal/opal/corelib/number.rb', line 246 def ~ `~self` end