Module: Enumerable

Included in:
Array, Enumerator, Enumerator::Generator, Hash, ObjectSpace.self::WeakMap, Range, Set, Struct
Defined in:
opal/opal/corelib/enumerable.rb

Overview

helpers: truthy, coerce_to, yield1, yieldX, deny_frozen_access

Instance Method Summary collapse

Instance Method Details

#all?(pattern = undefined, &block) ⇒ Boolean

Returns:



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

Returns:



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 = $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)
  ::Kernel.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 = $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(&block).flatten(1)
end

#compactObject



134
135
136
# File 'opal/opal/corelib/enumerable.rb', line 134

def compact
  to_a.compact
end

#count(object = undefined, &block) ⇒ Object



138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# File 'opal/opal/corelib/enumerable.rb', line 138

def count(object = undefined, &block)
  result = 0

  %x{
    if (object != null && block !== nil) {
      #{warn('warning: given block not used')}
    }
  }

  if `object != null`
    block = ::Kernel.proc do |*args|
      ::Opal.destructure(args) == object
    end
  elsif block.nil?
    block = ::Kernel.proc { true }
  end

  each do |*args|
    `result++` if `$yieldX(block, args)`
  end

  result
end

#cycle(n = nil, &block) ⇒ Object



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
210
211
212
213
# File 'opal/opal/corelib/enumerable.rb', line 162

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 = $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 = $yield1(block, all[i]);
        }
      }
    }
    else {
      while (n > 1) {
        for (i = 0, length = all.length; i < length; i++) {
          value = $yield1(block, all[i]);
        }

        n--;
      }
    }
  }
end

#detect(ifnone = undefined, &block) ⇒ Object Also known as: find



215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# File 'opal/opal/corelib/enumerable.rb', line 215

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



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
# File 'opal/opal/corelib/enumerable.rb', line 238

def drop(number)
  number = `$coerce_to(number, #{::Integer}, 'to_int')`

  if `number < 0`
    ::Kernel.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



263
264
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
# File 'opal/opal/corelib/enumerable.rb', line 263

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 = $yield1(block, param);

        if (!$truthy(value)) {
          dropping = false;
          result.push(param);
        }
      }
      else {
        result.push(param);
      }
    };

    self.$each();

    return result;
  }
end

#each_cons(n, &block) ⇒ Object



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
331
332
333
334
# File 'opal/opal/corelib/enumerable.rb', line 292

def each_cons(n, &block)
  if `arguments.length != 1`
    ::Kernel.raise ::ArgumentError, "wrong number of arguments (#{`arguments.length`} for 1)"
  end

  n = ::Opal.try_convert n, ::Integer, :to_int

  if `n <= 0`
    ::Kernel.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) {
        $yield1(block, buffer.slice(0, n));
      }
    }

    self.$each();

    return self;
  }
end

#each_entry(*data, &block) ⇒ Object



336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
# File 'opal/opal/corelib/enumerable.rb', line 336

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`)};

      $yield1(block, item);
    }

    self.$each.apply(self, data);

    return self;
  }
end

#each_slice(n, &block) ⇒ Object



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
383
384
385
386
# File 'opal/opal/corelib/enumerable.rb', line 354

def each_slice(n, &block)
  n = `$coerce_to(#{n}, #{::Integer}, 'to_int')`

  if `n <= 0`
    ::Kernel.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) {
        $yield1(block, slice);
        slice = [];
      }
    };

    self.$each();

    // our "last" group, if smaller than n then won't have been yielded
    if (slice.length > 0) {
      $yield1(block, slice);
    }
  }

  self
end

#each_with_index(*args, &block) ⇒ Object



388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
# File 'opal/opal/corelib/enumerable.rb', line 388

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



408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
# File 'opal/opal/corelib/enumerable.rb', line 408

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



424
425
426
427
428
429
430
431
432
433
434
435
436
# File 'opal/opal/corelib/enumerable.rb', line 424

def entries(*args)
  %x{
    var result = [];

    self.$each.$$p = function() {
      result.push(#{::Opal.destructure(`arguments`)});
    };

    self.$each.apply(self, args);

    return result;
  }
end

#enumerator_sizeObject



653
654
655
# File 'opal/opal/corelib/enumerable.rb', line 653

def enumerator_size
  respond_to?(:size) ? size : nil
end

#filter_map(&block) ⇒ Object



438
439
440
441
442
# File 'opal/opal/corelib/enumerable.rb', line 438

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



444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
# File 'opal/opal/corelib/enumerable.rb', line 444

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 = $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`
      ::Kernel.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



528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
# File 'opal/opal/corelib/enumerable.rb', line 528

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



547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
# File 'opal/opal/corelib/enumerable.rb', line 547

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



566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
# File 'opal/opal/corelib/enumerable.rb', line 566

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 = $yield1(block, param);

      #{(hash[`value`] ||= []) << `param`};
    }

    self.$each();

    if (result !== undefined) {
      return result;
    }
  }

  hash
end

#include?(obj) ⇒ Boolean Also known as: member?

Returns:



591
592
593
594
595
596
597
598
599
# File 'opal/opal/corelib/enumerable.rb', line 591

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



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
643
644
645
# File 'opal/opal/corelib/enumerable.rb', line 601

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 = $yieldX(block, [result, value]);

        result = value;
      };
    }
    else {
      if (sym === undefined) {
        if (!#{::Symbol === object}) {
          #{::Kernel.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

#lazyObject



647
648
649
650
651
# File 'opal/opal/corelib/enumerable.rb', line 647

def lazy
  ::Enumerator::Lazy.new(self, enumerator_size) do |enum, *args|
    enum.yield(*args)
  end
end

#max(n = undefined, &block) ⇒ Object



657
658
659
660
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
# File 'opal/opal/corelib/enumerable.rb', line 657

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 = $yieldX(block, [item, result]);
        } else {
          value = #{`item` <=> `result`};
        }

        if (value === nil) {
          #{::Kernel.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



700
701
702
703
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
# File 'opal/opal/corelib/enumerable.rb', line 700

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 = $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



733
734
735
736
737
738
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
# File 'opal/opal/corelib/enumerable.rb', line 733

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) {
          #{::Kernel.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



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 786

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 = $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



819
820
821
822
823
824
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
# File 'opal/opal/corelib/enumerable.rb', line 819

def minmax(&block)
  block ||= ::Kernel.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) {
          #{::Kernel.raise ::ArgumentError, 'comparison failed'}
        } else if (min_cmp > 0) {
          min = element;
        }

        var max_cmp = #{block.call(`max`, `element`)};

        if (max_cmp === nil) {
          #{::Kernel.raise ::ArgumentError, 'comparison failed'}
        } else if (max_cmp < 0) {
          max = element;
        }
      }
    }

    self.$each();

    return [min, max];
  }
end

#minmax_by(&block) ⇒ Object



855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
# File 'opal/opal/corelib/enumerable.rb', line 855

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 = $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

Returns:



885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
# File 'opal/opal/corelib/enumerable.rb', line 885

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

Returns:



909
910
911
912
913
914
915
916
917
918
919
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 909

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



940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
# File 'opal/opal/corelib/enumerable.rb', line 940

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 = $yield1(block, param);

      if ($truthy(value)) {
        truthy.push(param);
      }
      else {
        falsy.push(param);
      }
    };

    self.$each();

    return [truthy, falsy];
  }
end

#reject(&block) ⇒ Object



964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
# File 'opal/opal/corelib/enumerable.rb', line 964

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 = $yield1(block, param);

      if (!$truthy(value)) {
        result.push(param);
      }
    };

    self.$each();

    return result;
  }
end

#reverse_each(&block) ⇒ Object



985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
# File 'opal/opal/corelib/enumerable.rb', line 985

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--) {
      $yieldX(block, result[i]);
    }

    return result;
  }
end

#slice_after(pattern = undefined, &block) ⇒ Object



1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
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
# File 'opal/opal/corelib/enumerable.rb', line 1069

def slice_after(pattern = undefined, &block)
  if `pattern === undefined && block === nil`
    ::Kernel.raise ::ArgumentError, 'both pattern and block are given'
  end

  if `pattern !== undefined && block !== nil || arguments.length > 1`
    ::Kernel.raise ::ArgumentError, "wrong number of arguments (#{`arguments.length`} expected 1)"
  end

  if `pattern !== undefined`
    block = ::Kernel.proc { |e| pattern === e }
  end

  ::Enumerator.new do |yielder|
    %x{
      var accumulate;

      self.$each.$$p = function() {
        var element = #{::Opal.destructure(`arguments`)},
            end_chunk = $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



1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
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
# File 'opal/opal/corelib/enumerable.rb', line 1005

def slice_before(pattern = undefined, &block)
  if `pattern === undefined && block === nil`
    ::Kernel.raise ::ArgumentError, 'both pattern and block are given'
  end

  if `pattern !== undefined && block !== nil || arguments.length > 1`
    ::Kernel.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 = $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



1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
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
# File 'opal/opal/corelib/enumerable.rb', line 1112

def slice_when(&block)
  ::Kernel.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 = $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



1150
1151
1152
1153
1154
# File 'opal/opal/corelib/enumerable.rb', line 1150

def sort(&block)
  ary = to_a
  block = ->(a, b) { a <=> b } unless block_given?
  ary.sort(&block)
end

#sort_by(&block) ⇒ Object



1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
# File 'opal/opal/corelib/enumerable.rb', line 1156

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

This method implements the Kahan summation algorithm if it is possible to apply one.



1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
# File 'opal/opal/corelib/enumerable.rb', line 1168

def sum(initial = 0)
  result = initial
  compensation = 0

  each do |*args|
    item = if block_given?
             yield(*args)
           else
             ::Opal.destructure(args)
           end

    if ![::Float::INFINITY, -::Float::INFINITY].include?(item) && item.respond_to?(:-)
      y = item - compensation
      t = result + y
      compensation = (t - result) - y
      result = t
    else
      result += item
    end
  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(hash = undefined) ⇒ Object



1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
# File 'opal/opal/corelib/enumerable.rb', line 1232

def tally(hash = undefined)
  `if (hash && hash !== nil) { $deny_frozen_access(hash); }`

  out = group_by(&:itself).transform_values(&:count)
  if hash
    out.each { |k, v| hash[k] = hash.fetch(k, 0) + v }
    hash
  else
    out
  end
end

#to_h(*args, &block) ⇒ Object



1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
# File 'opal/opal/corelib/enumerable.rb', line 1244

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) {
        #{::Kernel.raise ::TypeError, "wrong element type #{`ary`.class} (expected array)"}
      }
      if (ary.length !== 2) {
        #{::Kernel.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

#to_set(klass = Set, *args, &block) ⇒ Object



1271
1272
1273
# File 'opal/opal/corelib/enumerable.rb', line 1271

def to_set(klass = Set, *args, &block)
  klass.new(self, *args, &block)
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



1275
1276
1277
# File 'opal/opal/corelib/enumerable.rb', line 1275

def zip(*others, &block)
  to_a.zip(*others)
end