[フレーム]

Module: Enumerable

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

Instance Method Summary collapse

Instance Method Details

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

Returns:

16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'opal/opal/corelib/enumerable.rb', line 16
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:

40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'opal/opal/corelib/enumerable.rb', line 40
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

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
90
91
92
93
94
95
96
97
98
99
100
101
# File 'opal/opal/corelib/enumerable.rb', line 64
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

Raises:

103
104
105
106
107
# File 'opal/opal/corelib/enumerable.rb', line 103
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

109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'opal/opal/corelib/enumerable.rb', line 109
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

127
128
129
130
# File 'opal/opal/corelib/enumerable.rb', line 127
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

132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'opal/opal/corelib/enumerable.rb', line 132
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

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

214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'opal/opal/corelib/enumerable.rb', line 214
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

237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# File 'opal/opal/corelib/enumerable.rb', line 237
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

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
287
288
289
# File 'opal/opal/corelib/enumerable.rb', line 262
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

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
331
332
333
# File 'opal/opal/corelib/enumerable.rb', line 291
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 = [], 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

335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# File 'opal/opal/corelib/enumerable.rb', line 335
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

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
383
384
385
386
387
388
389
390
# File 'opal/opal/corelib/enumerable.rb', line 353
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

392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
# File 'opal/opal/corelib/enumerable.rb', line 392
def each_with_index(*args, &block)
 return enum_for(:each_with_index, *args) { 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

417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
# File 'opal/opal/corelib/enumerable.rb', line 417
def each_with_object(object, &block)
 return enum_for(:each_with_object, object) { 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

439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'opal/opal/corelib/enumerable.rb', line 439
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

666
667
668
# File 'opal/opal/corelib/enumerable.rb', line 666
def enumerator_size
 respond_to?(:size) ? size : nil
end

#find_all(&block) ⇒ Object Also known as: select

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 455
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 (#{Opal .truthy?(`value`)}) {
 result.push(param);
 }
 };
 self.$each();
 return result;
 }
end

#find_index(object = undefined, &block) ⇒ 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
506
# File 'opal/opal/corelib/enumerable.rb', line 476
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

508
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/enumerable.rb', line 508
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

541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
# File 'opal/opal/corelib/enumerable.rb', line 541
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

560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
# File 'opal/opal/corelib/enumerable.rb', line 560
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

579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
# File 'opal/opal/corelib/enumerable.rb', line 579
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?

Returns:

604
605
606
607
608
609
610
611
612
# File 'opal/opal/corelib/enumerable.rb', line 604
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

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
648
649
650
651
652
653
654
655
656
657
658
# File 'opal/opal/corelib/enumerable.rb', line 614
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

#lazyObject

660
661
662
663
664
# File 'opal/opal/corelib/enumerable.rb', line 660
def lazy
 Enumerator ::Lazy .new (self, enumerator_size) do |enum, *args|
 enum.yield(*args)
 end
end

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

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
703
704
705
706
707
708
709
710
711
712
713
# File 'opal/opal/corelib/enumerable.rb', line 672
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

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
# File 'opal/opal/corelib/enumerable.rb', line 715
def max_by(&block)
 return enum_for(:max_by) { 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

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

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
818
# File 'opal/opal/corelib/enumerable.rb', line 791
def min_by(&block)
 return enum_for(:min_by) { 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

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

Raises:

856
857
858
# File 'opal/opal/corelib/enumerable.rb', line 856
def minmax_by(&block)
 raise NotImplementedError 
end

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

Returns:

860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
# File 'opal/opal/corelib/enumerable.rb', line 860
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:

884
885
886
887
888
889
890
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 884
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

915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
# File 'opal/opal/corelib/enumerable.rb', line 915
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 (#{Opal .truthy?(`value`)}) {
 truthy.push(param);
 }
 else {
 falsy.push(param);
 }
 };
 self.$each();
 return [truthy, falsy];
 }
end

#reject(&block) ⇒ Object

941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
# File 'opal/opal/corelib/enumerable.rb', line 941
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 (#{Opal .falsy?(`value`)}) {
 result.push(param);
 }
 };
 self.$each();
 return result;
 }
end

#reverse_each(&block) ⇒ Object

962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
# File 'opal/opal/corelib/enumerable.rb', line 962
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

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
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
# File 'opal/opal/corelib/enumerable.rb', line 1048
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 (#{Opal .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

984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
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
# File 'opal/opal/corelib/enumerable.rb', line 984
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 (#{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
end

#slice_when(&block) ⇒ Object

Raises:

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
1121
1122
1123
1124
1125
1126
1127
# File 'opal/opal/corelib/enumerable.rb', line 1091
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 (#{Opal .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

1129
1130
1131
1132
1133
# File 'opal/opal/corelib/enumerable.rb', line 1129
def sort(&block)
 ary = to_a
 block = ->(a, b) { a <=> b } unless block_given?
 ary.sort(&block)
end

#sort_by(&block) ⇒ Object

1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
# File 'opal/opal/corelib/enumerable.rb', line 1135
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

1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
# File 'opal/opal/corelib/enumerable.rb', line 1146
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

1161
1162
1163
# File 'opal/opal/corelib/enumerable.rb', line 1161
def take(num)
 first(num)
end

#take_while(&block) ⇒ Object

1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
# File 'opal/opal/corelib/enumerable.rb', line 1165
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

#uniq(&block) ⇒ Object

1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
# File 'opal/opal/corelib/enumerable.rb', line 1181
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

1203
1204
1205
# File 'opal/opal/corelib/enumerable.rb', line 1203
def zip(*others, &block)
 to_a.zip(*others)
end

AltStyle によって変換されたページ (->オリジナル) /