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:



265
266
267
# File 'lib/code/object/list.rb', line 265

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
83
84
85
# 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 "join"
    sig(args) { String.maybe }
    code_join(value)
  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:



87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/code/object/list.rb', line 87

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



100
101
102
103
# File 'lib/code/object/list.rb', line 100

def code_append(other)
  raw << other
  self
end

#code_detect(argument, **globals) ⇒ Object



105
106
107
108
109
110
111
112
113
114
# File 'lib/code/object/list.rb', line 105

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



116
117
118
119
120
121
122
123
124
125
126
# File 'lib/code/object/list.rb', line 116

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



128
129
130
# File 'lib/code/object/list.rb', line 128

def code_first
  raw.first || Nothing.new
end

#code_flatten(level = nil) ⇒ Object



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

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:



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

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

#code_join(separator = nil) ⇒ Object



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

def code_join(separator = nil)
  separator ||= String.new("")

  String.new(raw.join(separator.raw))
end

#code_lastObject



157
158
159
# File 'lib/code/object/list.rb', line 157

def code_last
  raw.last || Nothing.new
end

#code_map(argument, **globals) ⇒ Object



161
162
163
164
165
166
167
168
169
170
171
172
# File 'lib/code/object/list.rb', line 161

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



174
175
176
# File 'lib/code/object/list.rb', line 174

def code_max
  raw.max || Nothing.new
end

#code_max_by(argument, **globals) ⇒ Object



178
179
180
181
182
183
184
185
186
187
# File 'lib/code/object/list.rb', line 178

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:



189
190
191
192
193
194
195
196
197
198
199
200
# File 'lib/code/object/list.rb', line 189

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



202
203
204
205
206
207
208
209
210
211
# File 'lib/code/object/list.rb', line 202

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



213
214
215
# File 'lib/code/object/list.rb', line 213

def code_reverse
  List.new(raw.reverse)
end

#code_select(argument, **globals) ⇒ Object



217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/code/object/list.rb', line 217

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



230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/code/object/list.rb', line 230

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



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

def code_size
  Integer.new(raw.size)
end

#code_sortObject



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

def code_sort
  List.new(raw.sort)
end

#code_sumObject



261
262
263
# File 'lib/code/object/list.rb', line 261

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

#code_uniqObject



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

def code_uniq
  List.new(raw.uniq)
end