Class: Code::Object::List
Instance Attribute Summary collapse
Instance Method Summary
collapse
#<=>, #==, #falsy?, #hash, #truthy?
Constructor Details
#initialize(raw = []) ⇒ List
6
7
8
|
# File 'lib/code/object/list.rb', line 6
def initialize(raw = [])
@raw = raw
end
|
Instance Attribute Details
Returns the value of attribute raw.
4
5
6
|
# File 'lib/code/object/list.rb', line 4
def raw
@raw
end
|
Instance Method Details
#<<(other) ⇒ Object
79
80
81
82
|
# File 'lib/code/object/list.rb', line 79
def <<(other)
raw << other
self
end
|
#call(**args) ⇒ Object
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# File 'lib/code/object/list.rb', line 10
def call(**args)
operator = args.fetch(:operator, nil)
arguments = args.fetch(:arguments, [])
globals = multi_fetch(args, *::Code::GLOBALS)
value = arguments.first&.value
if operator == "any?"
sig(arguments) { ::Code::Object::Function }
any?(value, **globals)
elsif operator == "none?"
sig(arguments) { ::Code::Object::Function }
none?(value, **globals)
elsif operator == "detect"
sig(arguments) { ::Code::Object::Function }
detect(value, **globals)
elsif operator == "reduce"
sig(arguments) { ::Code::Object::Function }
reduce(value, **globals)
elsif operator == "each"
sig(arguments) { ::Code::Object::Function }
each(value, **globals)
elsif operator == "select"
sig(arguments) { ::Code::Object::Function }
select(value, **globals)
elsif operator == "map"
sig(arguments) { ::Code::Object::Function }
map(value, **globals)
elsif operator == "max_by"
sig(arguments) { ::Code::Object::Function }
max_by(value, **globals)
elsif operator == "max"
sig(arguments)
max
elsif operator == "flatten"
sig(arguments)
flatten
elsif operator == "reverse"
sig(arguments)
reverse
elsif operator == "first"
sig(arguments)
first
elsif operator == "last"
sig(arguments)
last
elsif operator == "<<"
sig(arguments) { ::Code::Object }
append(value)
else
super
end
end
|
75
76
77
|
# File 'lib/code/object/list.rb', line 75
def deep_dup
::Code::Object::List.new(raw.deep_dup)
end
|
63
64
65
66
67
68
69
70
71
72
73
|
# File 'lib/code/object/list.rb', line 63
def flatten
::Code::Object::List.new(
raw.reduce([]) do |acc, element|
if element.is_a?(::Code::Object::List)
acc + element.flatten.raw
else
acc + [element]
end
end
)
end
|
88
89
90
|
# File 'lib/code/object/list.rb', line 88
def inspect
to_s
end
|
84
85
86
|
# File 'lib/code/object/list.rb', line 84
def to_s
"[#{raw.map(&:inspect).join(", ")}]"
end
|