Module: Enumerable
- Included in:
- Array, Enumerator, Enumerator::Generator, Hash, Range, Struct
- Defined in:
- opal/opal/corelib/enumerable.rb
Overview
helpers: falsy, truthy, coerce_to
Instance Method Summary collapse
- #all?(pattern = undefined, &block) ⇒ Boolean
- #any?(pattern = undefined, &block) ⇒ Boolean
- #chunk(&block) ⇒ Object
- #chunk_while(&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
- #filter_map(&block) ⇒ Object
- #find_all(&block) ⇒ Object (also: #filter, #select)
- #find_index(object = undefined, &block) ⇒ Object
- #first(number = undefined) ⇒ Object
- #grep(pattern, &block) ⇒ Object
- #grep_v(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(n = nil, &block) ⇒ Object
- #min(n = nil, &block) ⇒ Object
- #min_by(n = nil, &block) ⇒ Object
- #minmax(&block) ⇒ Object
- #minmax_by(&block) ⇒ Object
- #none?(pattern = undefined, &block) ⇒ Boolean
- #one?(pattern = undefined, &block) ⇒ Boolean
- #partition(&block) ⇒ Object
- #reject(&block) ⇒ Object
- #reverse_each(&block) ⇒ Object
- #slice_after(pattern = undefined, &block) ⇒ Object
- #slice_before(pattern = undefined, &block) ⇒ Object
- #slice_when(&block) ⇒ Object
- #sort(&block) ⇒ Object
- #sort_by(&block) ⇒ Object
- #sum(initial = 0) ⇒ Object
- #take(num) ⇒ Object
- #take_while(&block) ⇒ Object
- #tally ⇒ Object
- #to_h(*args, &block) ⇒ Object
- #uniq(&block) ⇒ Object
- #zip(*others, &block) ⇒ Object
Instance Method Details
#all?(pattern = undefined, &block) ⇒ Boolean
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'opal/opal/corelib/enumerable.rb', line 18 def all?(pattern = undefined, &block) if `pattern !== undefined` each do |*value| comparable = `comparableForPattern(value)` return false unless pattern.public_send(:===, *comparable) end elsif 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?(pattern = undefined, &block) ⇒ Boolean
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'opal/opal/corelib/enumerable.rb', line 42 def any?(pattern = undefined, &block) if `pattern !== undefined` each do |*value| comparable = `comparableForPattern(value)` return true if pattern.public_send(:===, *comparable) end elsif 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(&block) ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'opal/opal/corelib/enumerable.rb', line 66 def chunk(&block) return to_enum(:chunk) { enumerator_size } unless block_given? ::Enumerator.new do |yielder| %x{ var previous = nil, accumulate = []; 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 |
#chunk_while(&block) ⇒ Object
105 106 107 108 109 |
# File 'opal/opal/corelib/enumerable.rb', line 105 def chunk_while(&block) raise ArgumentError, 'no block given' unless block_given? slice_when { |before, after| !(yield before, after) } end |
#collect(&block) ⇒ Object Also known as: map
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'opal/opal/corelib/enumerable.rb', line 111 def collect(&block) return enum_for(:collect) { 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
129 130 131 132 |
# File 'opal/opal/corelib/enumerable.rb', line 129 def collect_concat(&block) return enum_for(:collect_concat) { enumerator_size } unless block_given? map { |item| yield item }.flatten(1) end |
#count(object = undefined, &block) ⇒ Object
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
# File 'opal/opal/corelib/enumerable.rb', line 134 def count(object = undefined, &block) result = 0 %x{ if (object != null && block !== nil) { #{warn('warning: given block not used')} } } 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
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 187 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 158 def cycle(n = nil, &block) unless block_given? return enum_for(:cycle, n) do if n.nil? respond_to?(:size) ? Float::INFINITY : nil else n = Opal.coerce_to!(n, Integer, :to_int) n > 0 ? enumerator_size * n : 0 end end end unless n.nil? n = Opal.coerce_to! n, Integer, :to_int return if `n <= 0` end %x{ var all = [], i, length, value; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); all.push(param); } self.$each(); 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
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
# File 'opal/opal/corelib/enumerable.rb', line 211 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
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
# File 'opal/opal/corelib/enumerable.rb', line 234 def drop(number) number = `$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
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'opal/opal/corelib/enumerable.rb', line 259 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 ($falsy(value)) { dropping = false; result.push(param); } } else { result.push(param); } }; self.$each(); return result; } end |
#each_cons(n, &block) ⇒ Object
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
# File 'opal/opal/corelib/enumerable.rb', line 288 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) do enum_size = enumerator_size if enum_size.nil? nil elsif enum_size == 0 || enum_size < n 0 else enum_size - n + 1 end end end %x{ var buffer = []; 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 nil; } end |
#each_entry(*data, &block) ⇒ Object
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
# File 'opal/opal/corelib/enumerable.rb', line 332 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
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
# File 'opal/opal/corelib/enumerable.rb', line 350 def each_slice(n, &block) n = `$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 slice = [] self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; slice.push(param); if (slice.length === n) { Opal.yield1(block, slice); slice = []; } }; self.$each(); // 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
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 |
# File 'opal/opal/corelib/enumerable.rb', line 384 def each_with_index(*args, &block) return enum_for(:each_with_index, *args) { enumerator_size } unless block_given? %x{ var index = 0; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; block(param, index); index++; }; self.$each.apply(self, args); } self end |
#each_with_object(object, &block) ⇒ Object
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 |
# File 'opal/opal/corelib/enumerable.rb', line 404 def each_with_object(object, &block) return enum_for(:each_with_object, object) { enumerator_size } unless block_given? %x{ self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; block(param, object); }; self.$each(); } object end |
#entries(*args) ⇒ Object Also known as: to_a
420 421 422 423 424 425 426 427 428 429 430 431 432 |
# File 'opal/opal/corelib/enumerable.rb', line 420 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
655 656 657 |
# File 'opal/opal/corelib/enumerable.rb', line 655 def enumerator_size respond_to?(:size) ? size : nil end |
#filter_map(&block) ⇒ Object
434 435 436 437 438 |
# File 'opal/opal/corelib/enumerable.rb', line 434 def filter_map(&block) return enum_for(:filter_map) { enumerator_size } unless block_given? map(&block).select(&:itself) end |
#find_all(&block) ⇒ Object Also known as: filter, select
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 |
# File 'opal/opal/corelib/enumerable.rb', line 442 def find_all(&block) return enum_for(:find_all) { enumerator_size } unless block_given? %x{ var result = []; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); if ($truthy(value)) { result.push(param); } }; self.$each(); return result; } end |
#find_index(object = undefined, &block) ⇒ Object
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 |
# File 'opal/opal/corelib/enumerable.rb', line 465 def find_index(object = undefined, &block) return enum_for :find_index if `object === undefined && block === nil` %x{ if (object != null && block !== nil) { #{warn('warning: given block not used')} } } 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
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 |
# File 'opal/opal/corelib/enumerable.rb', line 497 def first(number = undefined) if `number === undefined` each do |value| return value end else result = [] number = `$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
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 |
# File 'opal/opal/corelib/enumerable.rb', line 530 def grep(pattern, &block) result = [] each do |*value| cmp = `comparableForPattern(value)` next unless pattern.__send__(:===, *cmp) if block_given? value = [value] if value.length > 1 value = yield(*value) elsif value.length <= 1 value = value[0] end result.push(value) end result end |
#grep_v(pattern, &block) ⇒ Object
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 |
# File 'opal/opal/corelib/enumerable.rb', line 549 def grep_v(pattern, &block) result = [] each do |*value| cmp = `comparableForPattern(value)` next if pattern.__send__(:===, *cmp) if block_given? value = [value] if value.length > 1 value = yield(*value) elsif value.length <= 1 value = value[0] end result.push(value) end result end |
#group_by(&block) ⇒ Object
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 |
# File 'opal/opal/corelib/enumerable.rb', line 568 def group_by(&block) return enum_for(:group_by) { enumerator_size } unless block_given? hash = {} %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?
593 594 595 596 597 598 599 600 601 |
# File 'opal/opal/corelib/enumerable.rb', line 593 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
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 643 644 645 646 647 |
# File 'opal/opal/corelib/enumerable.rb', line 603 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
649 650 651 652 653 |
# File 'opal/opal/corelib/enumerable.rb', line 649 def lazy Enumerator::Lazy.new(self, enumerator_size) do |enum, *args| enum.yield(*args) end end |
#max(n = undefined, &block) ⇒ Object
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 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 |
# File 'opal/opal/corelib/enumerable.rb', line 661 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 = $coerce_to(n, #{Integer}, 'to_int'); } sort(&block).reverse.first(n) end |
#max_by(n = nil, &block) ⇒ Object
704 705 706 707 708 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 |
# File 'opal/opal/corelib/enumerable.rb', line 704 def max_by(n = nil, &block) return enum_for(:max_by, n) { enumerator_size } unless block unless n.nil? return sort_by(&block).reverse.take n end %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(n = nil, &block) ⇒ Object
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 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 782 783 784 785 786 787 788 789 790 |
# File 'opal/opal/corelib/enumerable.rb', line 739 def min(n = nil, &block) unless n.nil? if block_given? return sort { |a, b| yield a, b }.take n else return sort.take n end end %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(n = nil, &block) ⇒ Object
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 818 819 820 821 822 823 |
# File 'opal/opal/corelib/enumerable.rb', line 792 def min_by(n = nil, &block) return enum_for(:min_by, n) { enumerator_size } unless block unless n.nil? return sort_by(&block).take n end %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
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 |
# File 'opal/opal/corelib/enumerable.rb', line 825 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
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 |
# File 'opal/opal/corelib/enumerable.rb', line 861 def minmax_by(&block) return enum_for(:minmax_by) { enumerator_size } unless block %x{ var min_result = nil, max_result = nil, min_by, max_by; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); if ((min_by === undefined) || #{`value` <=> `min_by`} < 0) { min_result = param; min_by = value; } if ((max_by === undefined) || #{`value` <=> `max_by`} > 0) { max_result = param; max_by = value; } }; self.$each(); return [min_result, max_result]; } end |
#none?(pattern = undefined, &block) ⇒ Boolean
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 |
# File 'opal/opal/corelib/enumerable.rb', line 891 def none?(pattern = undefined, &block) if `pattern !== undefined` each do |*value| comparable = `comparableForPattern(value)` return false if pattern.public_send(:===, *comparable) end elsif block_given? each do |*value| if yield(*value) return false end end else each do |*value| item = Opal.destructure(value) return false if item end end true end |
#one?(pattern = undefined, &block) ⇒ Boolean
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 |
# File 'opal/opal/corelib/enumerable.rb', line 915 def one?(pattern = undefined, &block) count = 0 if `pattern !== undefined` each do |*value| comparable = `comparableForPattern(value)` if pattern.public_send(:===, *comparable) count += 1 return false if count > 1 end end elsif block_given? each do |*value| next unless yield(*value) count += 1 return false if count > 1 end else each do |*value| next unless Opal.destructure(value) count += 1 return false if count > 1 end end count == 1 end |
#partition(&block) ⇒ Object
946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 |
# File 'opal/opal/corelib/enumerable.rb', line 946 def partition(&block) return enum_for(:partition) { 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 ($truthy(value)) { truthy.push(param); } else { falsy.push(param); } }; self.$each(); return [truthy, falsy]; } end |
#reject(&block) ⇒ Object
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 |
# File 'opal/opal/corelib/enumerable.rb', line 972 def reject(&block) return enum_for(:reject) { enumerator_size } unless block_given? %x{ var result = []; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}, value = Opal.yield1(block, param); if ($falsy(value)) { result.push(param); } }; self.$each(); return result; } end |
#reverse_each(&block) ⇒ Object
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 |
# File 'opal/opal/corelib/enumerable.rb', line 993 def reverse_each(&block) return enum_for(:reverse_each) { 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_after(pattern = undefined, &block) ⇒ Object
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 |
# File 'opal/opal/corelib/enumerable.rb', line 1079 def slice_after(pattern = undefined, &block) if `pattern === undefined && block === nil` raise ArgumentError, 'both pattern and block are given' end if `pattern !== undefined && block !== nil || arguments.length > 1` raise ArgumentError, "wrong number of arguments (#{`arguments.length`} expected 1)" end if `pattern !== undefined` block = proc { |e| pattern === e } end Enumerator.new do |yielder| %x{ var accumulate; self.$each.$$p = function() { var element = #{Opal.destructure(`arguments`)}, end_chunk = Opal.yield1(block, element); if (accumulate == null) { accumulate = []; } if ($truthy(end_chunk)) { accumulate.push(element); #{yielder.yield(`accumulate`)}; accumulate = null; } else { accumulate.push(element) } } self.$each(); if (accumulate != null) { #{yielder.yield(`accumulate`)}; } } end end |
#slice_before(pattern = undefined, &block) ⇒ Object
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 |
# File 'opal/opal/corelib/enumerable.rb', line 1015 def slice_before(pattern = undefined, &block) if `pattern === undefined && block === nil` raise ArgumentError, 'both pattern and block are given' end if `pattern !== undefined && block !== nil || arguments.length > 1` raise ArgumentError, "wrong number of arguments (#{`arguments.length`} expected 1)" end Enumerator.new do |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 ($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 ($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 ($truthy(value) && slice.length > 0) { #{e << `slice`}; slice = []; } slice.push(param); }; } self.$each(); if (slice.length > 0) { #{e << `slice`}; } } end end |
#slice_when(&block) ⇒ Object
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 |
# File 'opal/opal/corelib/enumerable.rb', line 1122 def slice_when(&block) raise ArgumentError, 'wrong number of arguments (0 for 1)' unless block_given? Enumerator.new do |yielder| %x{ var slice = nil, last_after = nil; self.$each_cons.$$p = function() { var params = #{Opal.destructure(`arguments`)}, before = params[0], after = params[1], match = Opal.yieldX(block, [before, after]); last_after = after; if (slice === nil) { slice = []; } if ($truthy(match)) { slice.push(before); #{yielder.yield(`slice`)}; slice = []; } else { slice.push(before); } } self.$each_cons(2); if (slice !== nil) { slice.push(last_after); #{yielder.yield(`slice`)}; } } end end |
#sort(&block) ⇒ Object
1160 1161 1162 1163 1164 |
# File 'opal/opal/corelib/enumerable.rb', line 1160 def sort(&block) ary = to_a block = ->(a, b) { a <=> b } unless block_given? ary.sort(&block) end |
#sort_by(&block) ⇒ Object
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 |
# File 'opal/opal/corelib/enumerable.rb', line 1166 def sort_by(&block) return enum_for(:sort_by) { enumerator_size } unless block_given? dup = map do arg = Opal.destructure(`arguments`) [yield(arg), arg] end dup.sort! { |a, b| `a[0]` <=> `b[0]` } dup.map! { |i| `i[1]` } end |
#sum(initial = 0) ⇒ Object
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 |
# File 'opal/opal/corelib/enumerable.rb', line 1177 def sum(initial = 0) result = initial each do |*args| item = if block_given? yield(*args) else Opal.destructure(args) end result += item end result end |
#take(num) ⇒ Object
1192 1193 1194 |
# File 'opal/opal/corelib/enumerable.rb', line 1192 def take(num) first(num) end |
#take_while(&block) ⇒ Object
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 |
# File 'opal/opal/corelib/enumerable.rb', line 1196 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 |
#tally ⇒ Object
1232 1233 1234 |
# File 'opal/opal/corelib/enumerable.rb', line 1232 def tally group_by(&:itself).transform_values(&:count) end |
#to_h(*args, &block) ⇒ Object
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 |
# File 'opal/opal/corelib/enumerable.rb', line 1238 def to_h(*args, &block) return map(&block).to_h(*args) if block_given? %x{ var hash = #{{}}; self.$each.$$p = function() { var param = #{Opal.destructure(`arguments`)}; var ary = #{Opal.coerce_to?(`param`, Array, :to_ary)}, key, val; if (!ary.$$is_array) { #{raise TypeError, "wrong element type #{`ary`.class} (expected array)"} } if (ary.length !== 2) { #{raise ArgumentError, "wrong array length (expected 2, was #{`ary`.length})"} } key = ary[0]; val = ary[1]; Opal.hash_put(hash, key, val); }; self.$each.apply(self, args); return hash; } end |
#uniq(&block) ⇒ Object
1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 |
# File 'opal/opal/corelib/enumerable.rb', line 1212 def uniq(&block) hash = {} each do |*args| value = Opal.destructure(args) produced = if block_given? yield(value) else value end unless hash.key?(produced) hash[produced] = value end end hash.values end |
#zip(*others, &block) ⇒ Object
1265 1266 1267 |
# File 'opal/opal/corelib/enumerable.rb', line 1265 def zip(*others, &block) to_a.zip(*others) end |