Class: Code::Object::Dictionary
Constant Summary
Constants inherited
from Code::Object
NUMBER_CLASSES
Instance Attribute Summary
#methods, #raw
Instance Method Summary
collapse
-
#<=>(other) ⇒ Object
-
#call(**args) ⇒ Object
-
#code_any?(argument, **globals) ⇒ Boolean
-
#code_clear ⇒ Object
-
#code_compact ⇒ Object
-
#code_compact! ⇒ Object
-
#code_deep_duplicate ⇒ Object
-
#code_delete(*arguments, index: 0, **globals) ⇒ Object
-
#code_delete_if(argument, **globals) ⇒ Object
-
#code_delete_unless(argument, **globals) ⇒ Object
-
#code_dig(*arguments) ⇒ Object
-
#code_each(argument, **globals) ⇒ Object
-
#code_empty? ⇒ Boolean
-
#code_except(*arguments) ⇒ Object
-
#code_fetch(*arguments, index: 0, **globals) ⇒ Object
-
#code_fetch_values(*arguments) ⇒ Object
-
#code_flatten(level = nil) ⇒ Object
-
#code_get(key) ⇒ Object
-
#code_has_key?(key) ⇒ Boolean
-
#code_has_value?(key) ⇒ Boolean
-
#code_invert ⇒ Object
-
#code_keep_if(argument, **globals) ⇒ Object
-
#code_keep_unless(argument, **globals) ⇒ Object
-
#code_key(value, function = nil, **globals) ⇒ Object
-
#code_keys ⇒ Object
-
#code_merge(*arguments, **globals) ⇒ Object
-
#code_merge!(*arguments, **globals) ⇒ Object
-
#code_select(argument, **globals) ⇒ Object
-
#code_select!(argument, **globals) ⇒ Object
-
#code_set(key, value) ⇒ Object
-
#code_size ⇒ Object
-
#code_to_context ⇒ Object
-
#code_to_query(namespace = nil) ⇒ Object
-
#code_transform_values(function, **globals) ⇒ Object
-
#code_values ⇒ Object
-
#initialize(*args, **kargs, &_block) ⇒ Dictionary
constructor
A new instance of Dictionary.
code_new, #code_new, maybe, #name, repeat, |
#==, #as_json, #code_and, #code_as_json, #code_compare, #code_different, #code_duplicate, #code_equal, #code_exclamation_mark, #code_exclusive_range, #code_falsy?, code_fetch, code_get, #code_greater, #code_greater_or_equal, #code_inclusive_range, #code_inspect, #code_less, #code_less_or_equal, #code_methods, #code_name, #code_nothing?, #code_or, #code_self, code_set, #code_something?, #code_strict_different, #code_strict_equal, #code_to_boolean, #code_to_class, #code_to_date, #code_to_decimal, #code_to_dictionary, #code_to_duration, #code_to_integer, #code_to_json, #code_to_list, #code_to_nothing, #code_to_parameter, #code_to_range, #code_to_string, #code_to_time, #code_truthy?, #eql?, #falsy?, #hash, #inspect, #multi_fetch, #nothing?, #sig, #something?, #succ, #to_code, #to_i, #to_json, #to_s, #truthy?
Constructor Details
#initialize(*args, **kargs, &_block) ⇒ Dictionary
Returns a new instance of Dictionary.
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# File 'lib/code/object/dictionary.rb', line 114
def initialize(*args, **kargs, &_block)
self.raw =
args
.map do |arg|
if arg.is_an?(::Hash)
arg.transform_keys(&:to_code).transform_values(&:to_code)
elsif arg.is_a?(Dictionary)
arg.raw.transform_keys(&:to_code).transform_values(&:to_code)
elsif arg.is_a?(Node::FunctionParameter)
arg.to_h.transform_keys(&:to_code).transform_values(&:to_code)
else
{}
end
end
.reduce({}, &:merge)
.merge(kargs.transform_keys(&:to_code).transform_values(&:to_code))
end
|
Instance Method Details
#<=>(other) ⇒ Object
1022
1023
1024
1025
1026
1027
1028
1029
1030
|
# File 'lib/code/object/dictionary.rb', line 1022
def <=>(other)
code_other = other.to_code
return -1 if self.class != code_other.class
return 0 if raw == code_other.raw
return -1 if raw < code_other.raw
return 1 if raw > code_other.raw
-1
end
|
#call(**args) ⇒ 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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
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
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
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
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
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
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
475
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
507
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
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
|
# File 'lib/code/object/dictionary.rb', line 132
def call(**args)
code_operator = args.fetch(:operator, nil).to_code
code_arguments = args.fetch(:arguments, List.new).to_code
globals = multi_fetch(args, *GLOBALS)
code_value = code_arguments.code_first
case code_operator.to_s
when "[]", "at", "get"
sig(args) { Object }
code_get(code_value)
when "any?"
sig(args) { (Function | Class).maybe }
code_any?(code_value, **globals)
when "clear"
sig(args)
code_clear
when "compact!"
sig(args)
code_compact!
when "compact"
sig(args)
code_compact
when "delete"
sig(args) { Object.repeat(1) }
code_delete(*code_arguments.raw, **globals)
when "delete_if"
sig(args) { Function | Class }
code_delete_if(code_value, **globals)
when "delete_unless"
sig(args) { Function | Class }
code_delete_unless(code_value, **globals)
when "dig"
sig(args) { Object.repeat(1) }
code_dig(*code_arguments.raw)
when "each"
sig(args) { Function }
code_each(code_value, **globals)
when "empty?"
sig(args)
code_empty?
when "except"
sig(args) { Object.repeat(1) }
code_except(*code_arguments.raw)
when "fetch"
sig(args) { Object.repeat(1) }
code_fetch(*code_arguments.raw, **globals)
when "fetch_values"
sig(args) { Object.repeat(1) }
code_fetch_values(*code_arguments.raw)
when "flatten"
sig(args) { Integer.maybe }
code_flatten(code_value)
when "has_key?"
sig(args) { Object }
code_has_key?(code_value)
when "has_value?"
sig(args) { Object }
code_has_value?(code_value)
when "invert"
sig(args)
code_invert
when "keep_if"
sig(args) { Function | Class }
code_keep_if(code_value, **globals)
when "keep_unless"
sig(args) { Function | Class }
code_keep_unless(code_value, **globals)
when "key"
sig(args) { [Object, Function.maybe] }
code_key(*code_arguments.raw, **globals)
when "keys"
sig(args)
code_keys
when "merge"
sig(args) { [Dictionary.repeat, Function.maybe] }
code_merge(*code_arguments.raw, **globals)
when "merge!"
sig(args) { [Dictionary.repeat, Function.maybe] }
code_merge!(*code_arguments.raw, **globals)
when "select!", "filter!"
sig(args) { Function | Class }
code_select!(code_value, **globals)
when "select", "filter"
sig(args) { Function | Class }
code_select(code_value, **globals)
when "size"
sig(args)
code_size
when "transform_values"
sig(args) { Function }
code_transform_values(code_value, **globals)
when "to_query"
sig(args) { String.maybe }
code_to_query(code_value)
when "values"
sig(args)
code_values
when "many?"
sig(args)
code_many?
when "positive?"
sig(args)
code_positive?
when "negative?"
sig(args)
code_negative?
when "zero?"
sig(args)
code_zero?
when "one?"
sig(args)
code_one?
when "two?"
sig(args)
code_two?
when "three?"
sig(args)
code_three?
when "four?"
sig(args)
code_four?
when "five?"
sig(args)
code_five?
when "six?"
sig(args)
code_six?
when "seven?"
sig(args)
code_seven?
when "eight?"
sig(args)
code_eight?
when "nine?"
sig(args)
code_nine?
when "ten?"
sig(args)
code_ten?
when "eleven?"
sig(args)
code_eleven?
when "twelve?"
sig(args)
code_twelve?
when "thirteen?"
sig(args)
code_thirteen?
when "fourteen?"
sig(args)
code_fourteen?
when "fifteen?"
sig(args)
code_fifteen?
when "sixteen?"
sig(args)
code_sixteen?
when "seventeen?"
sig(args)
code_seventeen?
when "eighteen?"
sig(args)
code_eighteen?
when "nineteen?"
sig(args)
code_nineteen?
when "twenty?"
sig(args)
code_twenty?
when "twenty_one?"
sig(args)
code_twenty_one?
when "twenty_two?"
sig(args)
code_twenty_two?
when "twenty_three?"
sig(args)
code_twenty_three?
when "twenty_four?"
sig(args)
code_twenty_four?
when "twenty_five?"
sig(args)
code_twenty_five?
when "twenty_six?"
sig(args)
code_twenty_six?
when "twenty_seven?"
sig(args)
code_twenty_seven?
when "twenty_eight?"
sig(args)
code_twenty_eight?
when "twenty_nine?"
sig(args)
code_twenty_nine?
when "thirty?"
sig(args)
code_thirty?
when "thirty_one?"
sig(args)
code_thirty_one?
when "thirty_two?"
sig(args)
code_thirty_two?
when "thirty_three?"
sig(args)
code_thirty_three?
when "thirty_four?"
sig(args)
code_thirty_four?
when "thirty_five?"
sig(args)
code_thirty_five?
when "thirty_six?"
sig(args)
code_thirty_six?
when "thirty_seven?"
sig(args)
code_thirty_seven?
when "thirty_eight?"
sig(args)
code_thirty_eight?
when "thirty_nine?"
sig(args)
code_thirty_nine?
when "forty?"
sig(args)
code_forty?
when "forty_one?"
sig(args)
code_forty_one?
when "forty_two?"
sig(args)
code_forty_two?
when "forty_three?"
sig(args)
code_forty_three?
when "forty_four?"
sig(args)
code_forty_four?
when "forty_five?"
sig(args)
code_forty_five?
when "forty_six?"
sig(args)
code_forty_six?
when "forty_seven?"
sig(args)
code_forty_seven?
when "forty_eight?"
sig(args)
code_forty_eight?
when "forty_nine?"
sig(args)
code_forty_nine?
when "fifty?"
sig(args)
code_fifty?
when "fifty_one?"
sig(args)
code_fifty_one?
when "fifty_two?"
sig(args)
code_fifty_two?
when "fifty_three?"
sig(args)
code_fifty_three?
when "fifty_four?"
sig(args)
code_fifty_four?
when "fifty_five?"
sig(args)
code_fifty_five?
when "fifty_six?"
sig(args)
code_fifty_six?
when "fifty_seven?"
sig(args)
code_fifty_seven?
when "fifty_eight?"
sig(args)
code_fifty_eight?
when "fifty_nine?"
sig(args)
code_fifty_nine?
when "sixty?"
sig(args)
code_sixty?
when "sixty_one?"
sig(args)
code_sixty_one?
when "sixty_two?"
sig(args)
code_sixty_two?
when "sixty_three?"
sig(args)
code_sixty_three?
when "sixty_four?"
sig(args)
code_sixty_four?
when "sixty_five?"
sig(args)
code_sixty_five?
when "sixty_six?"
sig(args)
code_sixty_six?
when "sixty_seven?"
sig(args)
code_sixty_seven?
when "sixty_eight?"
sig(args)
code_sixty_eight?
when "sixty_nine?"
sig(args)
code_sixty_nine?
when "seventy?"
sig(args)
code_seventy?
when "seventy_one?"
sig(args)
code_seventy_one?
when "seventy_two?"
sig(args)
code_seventy_two?
when "seventy_three?"
sig(args)
code_seventy_three?
when "seventy_four?"
sig(args)
code_seventy_four?
when "seventy_five?"
sig(args)
code_seventy_five?
when "seventy_six?"
sig(args)
code_seventy_six?
when "seventy_seven?"
sig(args)
code_seventy_seven?
when "seventy_eight?"
sig(args)
code_seventy_eight?
when "seventy_nine?"
sig(args)
code_seventy_nine?
when "eighty?"
sig(args)
code_eighty?
when "eighty_one?"
sig(args)
code_eighty_one?
when "eighty_two?"
sig(args)
code_eighty_two?
when "eighty_three?"
sig(args)
code_eighty_three?
when "eighty_four?"
sig(args)
code_eighty_four?
when "eighty_five?"
sig(args)
code_eighty_five?
when "eighty_six?"
sig(args)
code_eighty_six?
when "eighty_seven?"
sig(args)
code_eighty_seven?
when "eighty_eight?"
sig(args)
code_eighty_eight?
when "eighty_nine?"
sig(args)
code_eighty_nine?
when "ninety?"
sig(args)
code_ninety?
when "ninety_one?"
sig(args)
code_ninety_one?
when "ninety_two?"
sig(args)
code_ninety_two?
when "ninety_three?"
sig(args)
code_ninety_three?
when "ninety_four?"
sig(args)
code_ninety_four?
when "ninety_five?"
sig(args)
code_ninety_five?
when "ninety_six?"
sig(args)
code_ninety_six?
when "ninety_seven?"
sig(args)
code_ninety_seven?
when "ninety_eight?"
sig(args)
code_ninety_eight?
when "ninety_nine?"
sig(args)
code_ninety_nine?
when "one_hundred?"
sig(args)
code_one_hundred?
when ->(code_operator) { code_has_key?(code_operator).truthy? }
result = code_fetch(code_operator)
if result.is_a?(Function)
result.call(**args, operator: nil)
else
sig(args)
result
end
else
super
end
end
|
#code_any?(argument, **globals) ⇒ Boolean
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
|
# File 'lib/code/object/dictionary.rb', line 555
def code_any?(argument, **globals)
code_argument = argument.to_code
if code_argument.nothing?
Boolean.new(raw.any?)
elsif code_argument.is_a?(Class)
Boolean.new(raw.any? { |_, value| value.is_a?(code_argument.raw) })
else
index = 0
Boolean.new(
raw.any? do |key, value|
code_argument
.call(
arguments: List.new([key, value, Integer.new(index), self]),
**globals
)
.truthy?
.tap { index += 1 }
end
)
end
end
|
#code_clear ⇒ Object
579
580
581
582
|
# File 'lib/code/object/dictionary.rb', line 579
def code_clear
self.raw = {}
self
end
|
#code_compact ⇒ Object
584
585
586
|
# File 'lib/code/object/dictionary.rb', line 584
def code_compact
Dictionary.new(raw.dup.delete_if { |_, value| value.falsy? })
end
|
#code_compact! ⇒ Object
588
589
590
591
|
# File 'lib/code/object/dictionary.rb', line 588
def code_compact!
raw.delete_if { |_, value| value.falsy? }
self
end
|
#code_deep_duplicate ⇒ Object
1016
1017
1018
1019
1020
|
# File 'lib/code/object/dictionary.rb', line 1016
def code_deep_duplicate
Dictionary.new(
raw.dup.to_h { |key, value| [key, value].map(&:code_deep_duplicate) }
)
end
|
#code_delete(*arguments, index: 0, **globals) ⇒ Object
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
|
# File 'lib/code/object/dictionary.rb', line 593
def code_delete(*arguments, index: 0, **globals)
arguments = arguments.to_code.raw
code_index = index.to_code
code_default =
(
arguments.last if arguments.last.is_a?(Function) && arguments.many?
).to_code
arguments = arguments[...-1] unless code_default.nothing?
code_first = arguments.first.to_code
if arguments.one?
raw.delete(code_first) do
if code_default.nothing?
Nothing.new
else
code_default.call(
arguments: List.new([code_first, code_index, self]),
**globals
)
end
end
else
Dictionary.new(
arguments
.map
.with_index do |code_argument, index|
if code_default.nothing?
[
code_argument,
code_delete(code_argument, index: index, **globals)
]
else
[
code_argument,
code_delete(
code_argument,
code_default,
index: index,
**globals
)
]
end
end
.to_h
)
end
end
|
#code_delete_if(argument, **globals) ⇒ Object
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
|
# File 'lib/code/object/dictionary.rb', line 643
def code_delete_if(argument, **globals)
code_argument = argument.to_code
if code_argument.is_a?(Class)
raw.delete_if { |_, value| value.is_a?(code_argument.raw) }
else
raw.delete_if.with_index do |(code_key, code_value), index|
argument.call(
arguments:
List.new([code_key, code_value, Integer.new(index), self]),
**globals
).truthy?
end
end
self
end
|
#code_delete_unless(argument, **globals) ⇒ Object
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
|
# File 'lib/code/object/dictionary.rb', line 661
def code_delete_unless(argument, **globals)
code_argument = argument.to_code
if code_argument.is_a?(Class)
raw.delete_if { |_, value| !value.is_a?(code_argument.raw) }
else
raw.delete_if.with_index do |(key, value), index|
code_argument.call(
arguments: List.new([key, value, Integer.new(index), self]),
**globals
).falsy?
end
end
self
end
|
#code_dig(*arguments) ⇒ Object
678
679
680
681
682
683
684
685
686
687
688
689
690
|
# File 'lib/code/object/dictionary.rb', line 678
def code_dig(*arguments)
code_arguments = arguments.to_code
code_arguments
.raw
.reduce(self) do |code_acc, code_element|
if code_acc.is_a?(Dictionary) || code_acc.is_a?(List)
code_acc.code_get(code_element)
else
Nothing.new
end
end
end
|
#code_each(argument, **globals) ⇒ Object
692
693
694
695
696
697
698
699
700
701
702
703
|
# File 'lib/code/object/dictionary.rb', line 692
def code_each(argument, **globals)
code_argument = argument.to_code
raw.each.with_index do |(key, value), index|
code_argument.call(
arguments: List.new([key, value, Integer.new(index), self]),
**globals
)
end
self
end
|
#code_empty? ⇒ Boolean
705
706
707
|
# File 'lib/code/object/dictionary.rb', line 705
def code_empty?
Boolean.new(raw.empty?)
end
|
#code_except(*arguments) ⇒ Object
709
710
711
712
|
# File 'lib/code/object/dictionary.rb', line 709
def code_except(*arguments)
code_arguments = arguments.to_code
Dictionary.new(raw.except(*code_arguments.raw))
end
|
#code_fetch(*arguments, index: 0, **globals) ⇒ Object
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
753
754
755
756
757
758
759
760
761
762
|
# File 'lib/code/object/dictionary.rb', line 714
def code_fetch(*arguments, index: 0, **globals)
code_index = index.to_code
arguments = arguments.to_code.raw
code_default =
(
arguments.last if arguments.last.is_a?(Function) && arguments.many?
).to_code
arguments = arguments[..-2] unless code_default.nothing?
code_first = arguments.first.to_code
if arguments.one?
raw.fetch(code_first) do
if code_default.nothing?
Nothing.new
else
code_default.call(
arguments: List.new([code_first, code_index, self]),
**globals
)
end
end
else
Dictionary.new(
arguments
.map
.with_index do |code_argument, index|
if code_default.nothing?
[
code_argument,
code_fetch(code_argument, index: index, **globals)
]
else
[
code_argument,
code_fetch(
code_argument,
code_default,
index: index,
**globals
)
]
end
end
.to_h
)
end
end
|
#code_fetch_values(*arguments) ⇒ Object
764
765
766
767
768
|
# File 'lib/code/object/dictionary.rb', line 764
def code_fetch_values(*arguments)
code_arguments = arguments.to_code
List.new(raw.fetch_values(*code_arguments.raw))
end
|
#code_flatten(level = nil) ⇒ Object
770
771
772
773
774
|
# File 'lib/code/object/dictionary.rb', line 770
def code_flatten(level = nil)
code_level = level.to_code
code_level = Integer.new(-1) if code_level.nothing?
code_to_list.code_flatten(code_level)
end
|
#code_get(key) ⇒ Object
776
777
778
779
|
# File 'lib/code/object/dictionary.rb', line 776
def code_get(key)
code_key = key.to_code
raw[code_key] || Nothing.new
end
|
#code_has_key?(key) ⇒ Boolean
781
782
783
784
|
# File 'lib/code/object/dictionary.rb', line 781
def code_has_key?(key)
code_key = key.to_code
Boolean.new(raw.key?(code_key))
end
|
#code_has_value?(key) ⇒ Boolean
786
787
788
789
|
# File 'lib/code/object/dictionary.rb', line 786
def code_has_value?(key)
code_key = key.to_code
Boolean.new(raw.value?(code_key))
end
|
#code_invert ⇒ Object
791
792
793
|
# File 'lib/code/object/dictionary.rb', line 791
def code_invert
Dictionary.new(raw.invert)
end
|
#code_keep_if(argument, **globals) ⇒ Object
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
|
# File 'lib/code/object/dictionary.rb', line 795
def code_keep_if(argument, **globals)
code_argument = argument.to_code
if code_argument.is_a?(Class)
raw.keep_if { |_, value| value.is_a?(code_argument.raw) }
else
raw.keep_if.with_index do |(key, value), index|
code_argument.call(
arguments: List.new([key, value, Integer.new(index), self]),
**globals
).truthy?
end
end
self
end
|
#code_keep_unless(argument, **globals) ⇒ Object
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
|
# File 'lib/code/object/dictionary.rb', line 812
def code_keep_unless(argument, **globals)
code_argument = argument.to_code
if code_argument.is_a?(Class)
raw.keep_if { |_, value| !value.is_a?(code_argument.raw) }
else
raw.keep_if.with_index do |(key, value), index|
code_argument.call(
arguments: List.new([key, value, Integer.new(index), self]),
**globals
).falsy?
rescue Error::Next => e
e.code_value.falsy?
end
end
self
end
|
#code_key(value, function = nil, **globals) ⇒ Object
831
832
833
834
835
836
837
838
839
840
841
842
843
|
# File 'lib/code/object/dictionary.rb', line 831
def code_key(value, function = nil, **globals)
code_value = value.to_code
code_function = function.to_code
if code_function.nothing?
raw.key(code_value) || Nothing.new
else
raw.key(code_value) ||
function.call(arguments: List.new([code_value, self]), **globals)
end
rescue Error::Next => e
e.code_value
end
|
#code_keys ⇒ Object
845
846
847
|
# File 'lib/code/object/dictionary.rb', line 845
def code_keys
List.new(raw.keys)
end
|
#code_merge(*arguments, **globals) ⇒ Object
849
850
851
852
853
854
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
884
885
886
|
# File 'lib/code/object/dictionary.rb', line 849
def code_merge(*arguments, **globals)
arguments = arguments.to_code.raw
code_conflict =
(
arguments.last if arguments.last.is_a?(Function) && arguments.many?
).to_code
arguments = arguments[..-2] unless code_conflict.nothing?
index = 0
Dictionary.new(
raw.merge(*arguments.map(&:raw)) do |key, old_value, new_value|
if code_conflict.nothing?
new_value.to_code.tap { index += 1 }
else
code_conflict
.call(
arguments:
List.new(
[
key.to_code,
old_value.to_code,
new_value.to_code,
index.to_code,
self
]
),
**globals
)
.tap { index += 1 }
end
rescue Error::Next => e
e.code_value.tap { index += 1 }
end
)
end
|
#code_merge!(*arguments, **globals) ⇒ Object
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
914
915
916
917
918
919
920
921
922
923
924
925
|
# File 'lib/code/object/dictionary.rb', line 888
def code_merge!(*arguments, **globals)
arguments = arguments.to_code.raw
code_conflict =
(
arguments.last if arguments.last.is_a?(Function) && arguments.many?
).to_code
arguments = arguments[..-2] unless code_conflict.nothing?
index = 0
raw.merge!(*arguments.map(&:raw)) do |key, old_value, new_value|
if code_conflict.nothing?
new_value.to_code.tap { index += 1 }
else
code_conflict
.call(
arguments:
List.new(
[
key.to_code,
old_value.to_code,
new_value.to_code,
index.to_code,
self
]
),
**globals
)
.tap { index += 1 }
end
rescue Error::Next => e
e.code_value.tap { index += 1 }
end
self
end
|
#code_select(argument, **globals) ⇒ Object
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
|
# File 'lib/code/object/dictionary.rb', line 947
def code_select(argument, **globals)
code_argument = argument.to_code
if code_argument.is_a?(Class)
Dictionary.new(
raw.select { |_, value| value.is_a?(code_argument.raw) }
)
else
Dictionary.new(
raw.select.with_index do |(key, value), index|
argument.call(
arguments:
List.new([key.to_code, value.to_code, index.to_code, self]),
**globals
).truthy?
rescue Error::Next => e
e.code_value.truthy?
end
)
end
end
|
#code_select!(argument, **globals) ⇒ Object
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
|
# File 'lib/code/object/dictionary.rb', line 927
def code_select!(argument, **globals)
code_argument = argument.to_code
if code_argument.is_a?(Class)
raw.select! { |_, value| value.is_a?(code_argument.raw) }
else
raw.select!.with_index do |(key, value), index|
argument.call(
arguments:
List.new([key.to_code, value.to_code, index.to_code, self]),
**globals
).truthy?
rescue Error::Next => e
e.code_value.truthy?
end
end
self
end
|
#code_set(key, value) ⇒ Object
969
970
971
972
973
974
|
# File 'lib/code/object/dictionary.rb', line 969
def code_set(key, value)
code_key = key.to_code
code_value = value.to_code
raw[code_key] = code_value
code_value
end
|
#code_size ⇒ Object
976
977
978
|
# File 'lib/code/object/dictionary.rb', line 976
def code_size
Integer.new(raw.size)
end
|
#code_to_context ⇒ Object
980
981
982
|
# File 'lib/code/object/dictionary.rb', line 980
def code_to_context
Context.new(raw)
end
|
#code_to_query(namespace = nil) ⇒ Object
984
985
986
987
988
|
# File 'lib/code/object/dictionary.rb', line 984
def code_to_query(namespace = nil)
code_namespace = namespace.to_code
String.new(raw.to_query(code_namespace.raw))
end
|
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
|
# File 'lib/code/object/dictionary.rb', line 990
def code_transform_values(function, **globals)
code_function = function.to_code
Dictionary.new(
raw
.map
.with_index do |(key, value), index|
[
key.to_code,
code_function.call(
arguments:
List.new([key.to_code, value.to_code, index.to_code, self]),
**globals
)
]
rescue Error::Next => e
[key.to_code, e.code_value]
end
.to_h
)
end
|
#code_values ⇒ Object
1012
1013
1014
|
# File 'lib/code/object/dictionary.rb', line 1012
def code_values
List.new(raw.values)
end
|