Module: Enumerable
- Included in:
- Array, Enumerator, Enumerator::Generator, Hash, Range, Struct
- Defined in:
- opal/opal/corelib/enumerable.rb
Instance Method Summary collapse
- #all?(&block) ⇒ Boolean
- #any?(&block) ⇒ Boolean
- #chunk(state = undefined, &original_block) ⇒ Object
- #collect(&block) ⇒ Object (also: #map)
- #collect_concat(&block) ⇒ Object (also: #flat_map)
- #count(object = undefined, &block) ⇒ Object
- #cycle(n = nil, &block) ⇒ Object
- #detect(ifnone = undefined, &block) ⇒ Object (also: #find)
- #drop(number) ⇒ Object
- #drop_while(&block) ⇒ Object
- #each_cons(n, &block) ⇒ Object
- #each_entry(*data, &block) ⇒ Object
- #each_slice(n, &block) ⇒ Object
- #each_with_index(*args, &block) ⇒ Object
- #each_with_object(object, &block) ⇒ Object
- #entries(*args) ⇒ Object (also: #to_a)
- #enumerator_size ⇒ Object
- #find_all(&block) ⇒ Object (also: #select)
- #find_index(object = undefined, &block) ⇒ Object
- #first(number = undefined) ⇒ Object
- #grep(pattern, &block) ⇒ Object
- #group_by(&block) ⇒ Object
- #include?(obj) ⇒ Boolean (also: #member?)
- #inject(object = undefined, sym = undefined, &block) ⇒ Object (also: #reduce)
- #lazy ⇒ Object
- #max(n = undefined, &block) ⇒ Object
- #max_by(&block) ⇒ Object
- #min(&block) ⇒ Object
- #min_by(&block) ⇒ Object
- #minmax(&block) ⇒ Object
- #minmax_by(&block) ⇒ Object
- #none?(&block) ⇒ Boolean
- #one?(&block) ⇒ Boolean
- #partition(&block) ⇒ Object
- #reject(&block) ⇒ Object
- #reverse_each(&block) ⇒ Object
- #slice_before(pattern = undefined, &block) ⇒ Object
- #sort(&block) ⇒ Object
- #sort_by(&block) ⇒ Object
- #take(num) ⇒ Object
- #take_while(&block) ⇒ Object
- #zip(*others, &block) ⇒ Object
Instance Method Details
#all?(&block) ⇒ Boolean
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'opal/opal/corelib/enumerable.rb', line 2 def all?(&block) if block_given? each do |*value| unless yield(*value) return false end end else each do |*value| unless Opal.destructure(value) return false end end end true end |
#any?(&block) ⇒ Boolean
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'opal/opal/corelib/enumerable.rb', line 24 def any?(&block) if block_given? each do |*value| if yield(*value) return true end end else each do |*value| if Opal.destructure(value) return true end end end false end |
#chunk(state = undefined, &original_block) ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'opal/opal/corelib/enumerable.rb', line 46 def chunk(state = undefined, &original_block) Kernel.raise ArgumentError, "no block given" unless original_block ::Enumerator.new do |yielder| %x{ var block, previous = nil, accumulate = []; if (state == undefined || state === nil) { block = original_block; } else { block = #{Proc.new { |val| original_block.yield(val, state.dup)}} } function releaseAccumulate() { if (accumulate.length > 0) { #{yielder.yield(`previous`, `accumulate`)} } } self.$each.$$p = function(value) { var key = Opal.yield1(block, value); if (key === nil) { releaseAccumulate(); accumulate = []; previous = nil; } else { if (previous === nil || previous === key) { accumulate.push(value); } else { releaseAccumulate(); accumulate = [value]; } previous = key; } } self.$each(); releaseAccumulate(); } end end |
#collect(&block) ⇒ Object Also known as: map
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'opal/opal/corelib/enumerable.rb', line 91 def collect(&block) return enum_for(:collect){self.enumerator_size} unless block_given? %x{ var result = []; self.$each.$$p = function() { var value = Opal.yieldX(block, arguments); result.push(value); }; self.$each(); return result; } end |
#collect_concat(&block) ⇒ Object Also known as: flat_map
109 110 111 112 |
# File 'opal/opal/corelib/enumerable.rb', line 109 def collect_concat(&block) return enum_for(:collect_concat){self.enumerator_size} unless block_given? map { |item| yield item }.flatten(1) end |
#count(object = undefined, &block) ⇒ Object
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'opal/opal/corelib/enumerable.rb', line 114 def count(object = undefined, &block) result = 0 if `object != null` block = proc do |*args| Opal.destructure(args) == object end elsif block.nil? block = proc { true } end each do |*args| `result++` if `Opal.yieldX(block, args)` end result end |
#cycle(n = nil, &block) ⇒ Object
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'opal/opal/corelib/enumerable.rb', line 132 def cycle(n = nil, &block) return enum_for(:cycle, n) { if n == nil respond_to?(:size) ? Float::INFINITY : nil else n = Opal.coerce_to!(n, Integer, :to_int) n > 0 ? self.enumerator_size * n : 0 end } unless block_given? unless n.nil? n = Opal.coerce_to! n, Integer, :to_int return if `n <= 0` end %x{ var result, all = [], i, length, value; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); all.push(param); } self.$each(); if (result !== undefined) { return result; } if (all.length === 0) { return nil; } if (n === nil) { while (true) { for (i = 0, length = all.length; i < length; i++) { value = Opal.yield1(block, all[i]); } } } else { while (n > 1) { for (i = 0, length = all.length; i < length; i++) { value = Opal.yield1(block, all[i]); } n--; } } } end |
#detect(ifnone = undefined, &block) ⇒ Object Also known as: find
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'opal/opal/corelib/enumerable.rb', line 188 def detect(ifnone = undefined, &block) return enum_for :detect, ifnone unless block_given? each do |*args| value = Opal.destructure(args) if yield(value) return value end end %x{ if (ifnone !== undefined) { if (typeof(ifnone) === 'function') { return ifnone(); } else { return ifnone; } } } nil end |
#drop(number) ⇒ Object
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'opal/opal/corelib/enumerable.rb', line 211 def drop(number) number = Opal.coerce_to number, Integer, :to_int if `number < 0` raise ArgumentError, "attempt to drop negative size" end %x{ var result = [], current = 0; self.$each.$$p = function() { if (number <= current) { result.push(#{Opal.destructure(`arguments`)}); } current++; }; self.$each() return result; } end |
#drop_while(&block) ⇒ Object
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
# File 'opal/opal/corelib/enumerable.rb', line 236 def drop_while(&block) return enum_for :drop_while unless block_given? %x{ var result = [], dropping = true; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; if (dropping) { var value = Opal.yield1(block, param); if (#{Opal.falsy?(`value`)}) { dropping = false; result.push(param); } } else { result.push(param); } }; self.$each(); return result; } end |
#each_cons(n, &block) ⇒ Object
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
# File 'opal/opal/corelib/enumerable.rb', line 265 def each_cons(n, &block) if `arguments.length != 1` raise ArgumentError, "wrong number of arguments (#{`arguments.length`} for 1)" end n = Opal.try_convert n, Integer, :to_int if `n <= 0` raise ArgumentError, 'invalid size' end unless block_given? return enum_for(:each_cons, n) { enum_size = self.enumerator_size if enum_size.nil? nil elsif enum_size == 0 || enum_size < n 0 else enum_size - n + 1 end } end %x{ var buffer = [], result = nil; self.$each.$$p = function() { var element = #{Opal.destructure(`arguments`)}; buffer.push(element); if (buffer.length > n) { buffer.shift(); } if (buffer.length == n) { Opal.yield1(block, buffer.slice(0, n)); } } self.$each(); return result; } end |
#each_entry(*data, &block) ⇒ Object
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
# File 'opal/opal/corelib/enumerable.rb', line 309 def each_entry(*data, &block) unless block_given? return to_enum(:each_entry, *data) { enumerator_size } end %x{ self.$each.$$p = function() { var item = #{Opal.destructure(`arguments`)}; Opal.yield1(block, item); } self.$each.apply(self, data); return self; } end |
#each_slice(n, &block) ⇒ Object
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 |
# File 'opal/opal/corelib/enumerable.rb', line 327 def each_slice(n, &block) n = Opal.coerce_to n, Integer, :to_int if `n <= 0` raise ArgumentError, 'invalid slice size' end return enum_for(:each_slice, n){respond_to?(:size) ? (size / n).ceil : nil} unless block_given? %x{ var result, slice = [] self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; slice.push(param); if (slice.length === n) { Opal.yield1(block, slice); slice = []; } }; self.$each(); if (result !== undefined) { return result; } // our "last" group, if smaller than n then won't have been yielded if (slice.length > 0) { Opal.yield1(block, slice); } } nil end |
#each_with_index(*args, &block) ⇒ Object
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 |
# File 'opal/opal/corelib/enumerable.rb', line 366 def each_with_index(*args, &block) return enum_for(:each_with_index, *args){self.enumerator_size} unless block_given? %x{ var result, index = 0; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; block(param, index); index++; }; self.$each.apply(self, args); if (result !== undefined) { return result; } } self end |
#each_with_object(object, &block) ⇒ Object
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
# File 'opal/opal/corelib/enumerable.rb', line 391 def each_with_object(object, &block) return enum_for(:each_with_object, object){self.enumerator_size} unless block_given? %x{ var result; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; block(param, object); }; self.$each(); if (result !== undefined) { return result; } } object end |
#entries(*args) ⇒ Object Also known as: to_a
413 414 415 416 417 418 419 420 421 422 423 424 425 |
# File 'opal/opal/corelib/enumerable.rb', line 413 def entries(*args) %x{ var result = []; self.$each.$$p = function() { result.push(#{Opal.destructure(`arguments`)}); }; self.$each.apply(self, args); return result; } end |
#enumerator_size ⇒ Object
629 630 631 |
# File 'opal/opal/corelib/enumerable.rb', line 629 def enumerator_size respond_to?(:size) ? size : nil end |
#find_all(&block) ⇒ Object Also known as: select
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 |
# File 'opal/opal/corelib/enumerable.rb', line 429 def find_all(&block) return enum_for(:find_all){self.enumerator_size} unless block_given? %x{ var result = []; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); if (#{Opal.truthy?(`value`)}) { result.push(param); } }; self.$each(); return result; } end |
#find_index(object = undefined, &block) ⇒ Object
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 |
# File 'opal/opal/corelib/enumerable.rb', line 450 def find_index(object = undefined, &block) return enum_for :find_index if `object === undefined && block === nil` index = 0 if `object != null` each do |*value| if Opal.destructure(value) == object return index end `index += 1` end else each do |*value| if yield(*value) return index end `index += 1` end end nil end |
#first(number = undefined) ⇒ Object
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 |
# File 'opal/opal/corelib/enumerable.rb', line 476 def first(number = undefined) if `number === undefined` each do |value| return value end else result = [] number = Opal.coerce_to number, Integer, :to_int if `number < 0` raise ArgumentError, 'attempt to take negative size' end if `number == 0` return [] end current = 0 each do |*args| `result.push(#{Opal.destructure(args)})` if `number <= ++current` return result end end result end end |
#grep(pattern, &block) ⇒ 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 538 539 540 |
# File 'opal/opal/corelib/enumerable.rb', line 509 def grep(pattern, &block) %x{ var result = []; if (block !== nil) { self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = #{pattern === `param`}; if (#{Opal.truthy?(`value`)}) { value = Opal.yield1(block, param); result.push(value); } }; } else { self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = #{pattern === `param`}; if (#{Opal.truthy?(`value`)}) { result.push(param); } }; } self.$each(); return result; } end |
#group_by(&block) ⇒ Object
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 |
# File 'opal/opal/corelib/enumerable.rb', line 542 def group_by(&block) return enum_for(:group_by){self.enumerator_size} unless block_given? hash = Hash.new %x{ var result; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); #{(hash[`value`] ||= []) << `param`}; } self.$each(); if (result !== undefined) { return result; } } hash end |
#include?(obj) ⇒ Boolean Also known as: member?
567 568 569 570 571 572 573 574 575 |
# File 'opal/opal/corelib/enumerable.rb', line 567 def include?(obj) each do |*args| if Opal.destructure(args) == obj return true end end false end |
#inject(object = undefined, sym = undefined, &block) ⇒ Object Also known as: reduce
577 578 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 |
# File 'opal/opal/corelib/enumerable.rb', line 577 def inject(object = undefined, sym = undefined, &block) %x{ var result = object; if (block !== nil && sym === undefined) { self.$each.$$p = function() { var value = #{Opal.destructure(`arguments`)}; if (result === undefined) { result = value; return; } value = Opal.yieldX(block, [result, value]); result = value; }; } else { if (sym === undefined) { if (!#{Symbol === object}) { #{raise TypeError, "#{object.inspect} is not a Symbol"}; } sym = object; result = undefined; } self.$each.$$p = function() { var value = #{Opal.destructure(`arguments`)}; if (result === undefined) { result = value; return; } result = #{`result`.__send__ sym, `value`}; }; } self.$each(); return result == undefined ? nil : result; } end |
#lazy ⇒ Object
623 624 625 626 627 |
# File 'opal/opal/corelib/enumerable.rb', line 623 def lazy Enumerator::Lazy.new(self, enumerator_size) {|enum, *args| enum.yield(*args) } end |
#max(n = undefined, &block) ⇒ Object
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 |
# File 'opal/opal/corelib/enumerable.rb', line 635 def max(n = undefined, &block) %x{ if (n === undefined || n === nil) { var result, value; self.$each.$$p = function() { var item = #{Opal.destructure(`arguments`)}; if (result === undefined) { result = item; return; } if (block !== nil) { value = Opal.yieldX(block, [item, result]); } else { value = #{`item` <=> `result`}; } if (value === nil) { #{raise ArgumentError, "comparison failed"}; } if (value > 0) { result = item; } } self.$each(); if (result === undefined) { return nil; } else { return result; } } } n = Opal.coerce_to(n, Integer, :to_int) sort(&block).reverse.first(n) end |
#max_by(&block) ⇒ Object
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 |
# File 'opal/opal/corelib/enumerable.rb', line 678 def max_by(&block) return enum_for(:max_by){self.enumerator_size} unless block %x{ var result, by; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); if (result === undefined) { result = param; by = value; return; } if (#{`value` <=> `by`} > 0) { result = param by = value; } }; self.$each(); return result === undefined ? nil : result; } end |
#min(&block) ⇒ Object
709 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 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 |
# File 'opal/opal/corelib/enumerable.rb', line 709 def min(&block) %x{ var result; if (block !== nil) { self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; if (result === undefined) { result = param; return; } var value = block(param, result); if (value === nil) { #{raise ArgumentError, "comparison failed"}; } if (value < 0) { result = param; } }; } else { self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; if (result === undefined) { result = param; return; } if (#{Opal.compare(`param`, `result`)} < 0) { result = param; } }; } self.$each(); return result === undefined ? nil : result; } end |
#min_by(&block) ⇒ Object
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 |
# File 'opal/opal/corelib/enumerable.rb', line 754 def min_by(&block) return enum_for(:min_by){self.enumerator_size} unless block %x{ var result, by; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); if (result === undefined) { result = param; by = value; return; } if (#{`value` <=> `by`} < 0) { result = param by = value; } }; self.$each(); return result === undefined ? nil : result; } end |
#minmax(&block) ⇒ Object
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 |
# File 'opal/opal/corelib/enumerable.rb', line 783 def minmax(&block) block ||= proc { |a,b| a <=> b } %x{ var min = nil, max = nil, first_time = true; self.$each.$$p = function() { var element = #{Opal.destructure(`arguments`)}; if (first_time) { min = max = element; first_time = false; } else { var min_cmp = #{block.call(`min`, `element`)}; if (min_cmp === nil) { #{raise ArgumentError, 'comparison failed'} } else if (min_cmp > 0) { min = element; } var max_cmp = #{block.call(`max`, `element`)}; if (max_cmp === nil) { #{raise ArgumentError, 'comparison failed'} } else if (max_cmp < 0) { max = element; } } } self.$each(); return [min, max]; } end |
#minmax_by(&block) ⇒ Object
819 820 821 |
# File 'opal/opal/corelib/enumerable.rb', line 819 def minmax_by(&block) raise NotImplementedError end |
#none?(&block) ⇒ Boolean
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 |
# File 'opal/opal/corelib/enumerable.rb', line 823 def none?(&block) if block_given? each do |*value| if yield(*value) return false end end else each do |*value| if Opal.destructure(value) return false end end end true end |
#one?(&block) ⇒ Boolean
845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 |
# File 'opal/opal/corelib/enumerable.rb', line 845 def one?(&block) count = 0 if block_given? each do |*value| if yield(*value) count += 1 return false if count > 1 end end else each do |*value| if Opal.destructure(value) count += 1 return false if count > 1 end end end count == 1 end |
#partition(&block) ⇒ Object
873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 |
# File 'opal/opal/corelib/enumerable.rb', line 873 def partition(&block) return enum_for(:partition){self.enumerator_size} unless block_given? %x{ var truthy = [], falsy = [], result; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); if (#{Opal.truthy?(`value`)}) { truthy.push(param); } else { falsy.push(param); } }; self.$each(); return [truthy, falsy]; } end |
#reject(&block) ⇒ Object
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 |
# File 'opal/opal/corelib/enumerable.rb', line 899 def reject(&block) return enum_for(:reject){self.enumerator_size} unless block_given? %x{ var result = []; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); if (#{Opal.falsy?(`value`)}) { result.push(param); } }; self.$each(); return result; } end |
#reverse_each(&block) ⇒ Object
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 |
# File 'opal/opal/corelib/enumerable.rb', line 920 def reverse_each(&block) return enum_for(:reverse_each){self.enumerator_size} unless block_given? %x{ var result = []; self.$each.$$p = function() { result.push(arguments); }; self.$each(); for (var i = result.length - 1; i >= 0; i--) { Opal.yieldX(block, result[i]); } return result; } end |
#slice_before(pattern = undefined, &block) ⇒ Object
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 |
# File 'opal/opal/corelib/enumerable.rb', line 942 def slice_before(pattern = undefined, &block) if `pattern === undefined && block === nil || arguments.length > 1` raise ArgumentError, "wrong number of arguments (#{`arguments.length`} for 1)" end Enumerator.new {|e| %x{ var slice = []; if (block !== nil) { if (pattern === undefined) { self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); if (#{Opal.truthy?(`value`)} && slice.length > 0) { #{e << `slice`}; slice = []; } slice.push(param); }; } else { self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = block(param, #{pattern.dup}); if (#{Opal.truthy?(`value`)} && slice.length > 0) { #{e << `slice`}; slice = []; } slice.push(param); }; } } else { self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = #{pattern === `param`}; if (#{Opal.truthy?(`value`)} && slice.length > 0) { #{e << `slice`}; slice = []; } slice.push(param); }; } self.$each(); if (slice.length > 0) { #{e << `slice`}; } } } end |
#sort(&block) ⇒ Object
1002 1003 1004 1005 1006 |
# File 'opal/opal/corelib/enumerable.rb', line 1002 def sort(&block) ary = to_a block = -> a,b {a <=> b} unless block_given? return ary.sort(&block) end |
#sort_by(&block) ⇒ Object
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 |
# File 'opal/opal/corelib/enumerable.rb', line 1008 def sort_by(&block) return enum_for(:sort_by){self.enumerator_size} unless block_given? dup = map { arg = Opal.destructure(`arguments`) [yield(arg), arg] } dup.sort! { |a, b| `a[0]` <=> `b[0]` } dup.map! { |i| `i[1]` } end |
#take(num) ⇒ Object
1019 1020 1021 |
# File 'opal/opal/corelib/enumerable.rb', line 1019 def take(num) first(num) end |
#take_while(&block) ⇒ Object
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 |
# File 'opal/opal/corelib/enumerable.rb', line 1023 def take_while(&block) return enum_for :take_while unless block result = [] each do |*args| value = Opal.destructure(args) unless yield(value) return result end `result.push(value)` end end |
#zip(*others, &block) ⇒ Object
1041 1042 1043 |
# File 'opal/opal/corelib/enumerable.rb', line 1041 def zip(*others, &block) to_a.zip(*others) end |