Class: Code::Object::List

Inherits:
Code::Object show all
Defined in:
lib/code/object/list.rb

Direct Known Subclasses

IdentifierList

Instance Attribute Summary

Attributes inherited from Code::Object

#raw

Instance Method Summary collapse

Methods inherited from Code::Object

#<=>, #==, #as_json, as_json, call, #code_and_operator, code_and_operator, code_as_json, #code_as_json, code_different, #code_different, code_equal_equal, #code_equal_equal, code_equal_equal_equal, #code_equal_equal_equal, code_exclamation_point, #code_exclamation_point, #code_exclusive_range, code_exclusive_range, code_inclusive_range, #code_inclusive_range, code_new, code_or_operator, #code_or_operator, #code_self, code_self, code_to_json, #code_to_json, #falsy?, falsy?, #hash, inspect, #inspect, maybe, multi_fetch, #multi_fetch, repeat, sig, #sig, #succ, to_json, #to_json, #to_s, to_s, truthy?, #truthy?, |

Constructor Details

#initialize(*args, **_kargs, &_block) ⇒ List

Returns a new instance of List.



6
7
8
9
10
# File 'lib/code/object/list.rb', line 6

def initialize(*args, **_kargs, &_block)
  raw = args.first
  raw = raw.raw if raw.is_an?(Object)
  @raw = raw.to_a
end

Instance Method Details

#any?Boolean

Returns:



256
257
258
# File 'lib/code/object/list.rb', line 256

def any?
  raw.any?
end

#call(**args) ⇒ Object



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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/code/object/list.rb', line 12

def call(**args)
  operator = args.fetch(:operator, nil)
  arguments = args.fetch(:arguments, List.new)
  globals = multi_fetch(args, *GLOBALS)
  value = arguments.code_first

  case operator.to_s
  when "sort"
    sig(args)
    code_sort
  when "<<", "append"
    sig(args) { Object }
    code_append(value)
  when "any?"
    sig(args) { Function }
    code_any?(value, **globals)
  when "detect"
    sig(args) { Function }
    code_detect(value, **globals)
  when "each"
    sig(args) { Function }
    code_each(value, **globals)
  when "first"
    sig(args)
    code_first
  when "flatten"
    sig(args) { Integer.maybe }
    code_flatten
  when "include?"
    sig(args) { Object }
    code_include?(value)
  when "last"
    sig(args)
    code_last
  when "map"
    sig(args) { Function }
    code_map(value, **globals)
  when "max"
    sig(args)
    code_max
  when "max_by"
    sig(args) { Function }
    code_max_by(value, **globals)
  when "none?"
    sig(args) { Function }
    code_none?(value, **globals)
  when "reduce"
    sig(args) { Function }
    code_reduce(value, **globals)
  when "reverse"
    sig(args)
    code_reverse
  when "select"
    sig(args) { Function }
    code_select(value, **globals)
  when "select!"
    sig(args) { Function }
    code_select!(value, **globals)
  when "size"
    sig(args)
    code_size
  when "sum"
    sig(args)
    code_sum
  when "uniq"
    sig(args)
    code_uniq
  else
    super
  end
end

#code_any?(argument, **globals) ⇒ Boolean

Returns:



84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/code/object/list.rb', line 84

def code_any?(argument, **globals)
  Boolean.new(
    raw.any?.with_index do |element, index|
      argument.call(
        arguments: List.new([element, Integer.new(index), self]),
        **globals
      ).truthy?
    rescue Error::Next => e
      e.value || Nothing.new
    end
  )
end

#code_append(other) ⇒ Object



97
98
99
100
# File 'lib/code/object/list.rb', line 97

def code_append(other)
  raw << other
  self
end

#code_detect(argument, **globals) ⇒ Object



102
103
104
105
106
107
108
109
110
111
# File 'lib/code/object/list.rb', line 102

def code_detect(argument, **globals)
  raw.detect.with_index do |element, index|
    argument.call(
      arguments: List.new([element, Integer.new(index), self]),
      **globals
    ).truthy?
  rescue Error::Next => e
    e.value || Nothing.new
  end || Nothing.new
end

#code_each(argument, **globals) ⇒ Object



113
114
115
116
117
118
119
120
121
122
123
# File 'lib/code/object/list.rb', line 113

def code_each(argument, **globals)
  raw.each.with_index do |element, index|
    argument.call(
      arguments: List.new([element, Integer.new(index), self]),
      **globals
    )
  rescue Error::Next => e
    e.value || Nothing.new
  end
  self
end

#code_firstObject



125
126
127
# File 'lib/code/object/list.rb', line 125

def code_first
  raw.first || Nothing.new
end

#code_flatten(level = nil) ⇒ Object



129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# File 'lib/code/object/list.rb', line 129

def code_flatten(level = nil)
  level = Integer.new(-1) if level.nil? || level.is_a?(Nothing)
  level = level.raw if level.is_a?(Integer)

  List.new(
    raw.reduce([]) do |acc, element|
      element = element.to_list if element.is_a?(Dictionary)

      if element.is_a?(List) && level != 0
        if level.positive?
          acc + element.code_flatten(level - 1).raw
        else
          acc + element.code_flatten(level).raw
        end
      else
        acc + [element]
      end
    end
  )
end

#code_include?(other) ⇒ Boolean

Returns:



150
151
152
# File 'lib/code/object/list.rb', line 150

def code_include?(other)
  Boolean.new(raw.include?(other))
end

#code_lastObject



154
155
156
# File 'lib/code/object/list.rb', line 154

def code_last
  raw.last || Nothing.new
end

#code_map(argument, **globals) ⇒ Object



158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/code/object/list.rb', line 158

def code_map(argument, **globals)
  List.new(
    raw.map.with_index do |element, index|
      argument.call(
        arguments: List.new([element, Integer.new(index), self]),
        **globals
      )
    rescue Error::Next => e
      e.value || Nothing.new
    end
  )
end

#code_maxObject



171
172
173
# File 'lib/code/object/list.rb', line 171

def code_max
  raw.max || Nothing.new
end

#code_max_by(argument, **globals) ⇒ Object



175
176
177
178
179
180
181
182
183
184
# File 'lib/code/object/list.rb', line 175

def code_max_by(argument, **globals)
  raw.max_by.with_index do |element, index|
    argument.call(
      arguments: List.new([element, Integer.new(index), self]),
      **globals
    )
  rescue Error::Next => e
    e.value || Nothing.new
  end || Nothing.new
end

#code_none?(argument, **globals) ⇒ Boolean

Returns:



186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/code/object/list.rb', line 186

def code_none?(argument, **globals)
  Boolean.new(
    raw.none?.with_index do |element, index|
      argument.call(
        arguments: List.new([element, Integer.new(index), self]),
        **globals
      ).truthy?
    rescue Error::Next => e
      (e.value || Nothing.new).truthy?
    end
  )
end

#code_reduce(argument, **globals) ⇒ Object



199
200
201
202
203
204
205
206
207
208
# File 'lib/code/object/list.rb', line 199

def code_reduce(argument, **globals)
  raw.reduce.with_index do |acc, element, index|
    argument.call(
      arguments: List.new([acc, element, Integer.new(index), self]),
      **globals
    )
  rescue Error::Next => e
    e.value || Nothing.new
  end || Nothing.new
end

#code_reverseObject



210
211
212
# File 'lib/code/object/list.rb', line 210

def code_reverse
  List.new(raw.reverse)
end

#code_select(argument, **globals) ⇒ Object



214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/code/object/list.rb', line 214

def code_select(argument, **globals)
  List.new(
    raw.select.with_index do |element, index|
      argument.call(
        arguments: List.new([element, Integer.new(index), self]),
        **globals
      ).truthy?
    rescue Error::Next => e
      (e.value || Nothing.new).truthy?
    end
  )
end

#code_select!(argument, **globals) ⇒ Object



227
228
229
230
231
232
233
234
235
236
237
238
# File 'lib/code/object/list.rb', line 227

def code_select!(argument, **globals)
  raw.select!.with_index do |element, index|
    argument.call(
      arguments: List.new([element, Integer.new(index), self]),
      **globals
    ).truthy?
  rescue Error::Next => e
    (e.value || Nothing.new).truthy?
  end

  self
end

#code_sizeObject



244
245
246
# File 'lib/code/object/list.rb', line 244

def code_size
  Integer.new(raw.size)
end

#code_sortObject



240
241
242
# File 'lib/code/object/list.rb', line 240

def code_sort
  List.new(raw.sort)
end

#code_sumObject



252
253
254
# File 'lib/code/object/list.rb', line 252

def code_sum
  raw.inject(&:code_plus) || Nothing.new
end

#code_uniqObject



248
249
250
# File 'lib/code/object/list.rb', line 248

def code_uniq
  List.new(raw.uniq)
end