Class: Code::Object::Integer

Inherits:
Number show all
Defined in:
lib/code/object/integer.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Code::Object

#<=>, #==, call, #code_and_operator, code_and_operator, #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_or_operator, #code_or_operator, code_self, #code_self, code_to_string, #code_to_string, falsy?, #falsy?, #hash, inspect, maybe, multi_fetch, #multi_fetch, repeat, sig, #sig, #to_json, to_s, truthy?, #truthy?, |

Constructor Details

#initialize(whole, exponent: nil) ⇒ Integer

Returns a new instance of Integer.



8
9
10
11
12
13
14
15
16
17
# File 'lib/code/object/integer.rb', line 8

def initialize(whole, exponent: nil)
  whole = whole.raw if whole.is_a?(Integer)
  @raw = whole.to_i
  return unless exponent

  exponent = exponent.raw if exponent.is_a?(Number)
  @raw *= 10**exponent
rescue FloatDomainError => e
  raise Error, e.message
end

Instance Attribute Details

#rawObject (readonly)

Returns the value of attribute raw.



6
7
8
# File 'lib/code/object/integer.rb', line 6

def raw
  @raw
end

Class Method Details

.nameObject



19
20
21
# File 'lib/code/object/integer.rb', line 19

def self.name
  "Integer"
end

Instance Method Details

#as_jsonObject



410
411
412
# File 'lib/code/object/integer.rb', line 410

def as_json(...)
  raw.as_json(...)
end

#call(**args) ⇒ Object



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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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
# File 'lib/code/object/integer.rb', line 23

def call(**args)
  operator = args.fetch(:operator, nil)
  arguments = args.fetch(:arguments, [])
  globals = multi_fetch(args, *GLOBALS)
  value = arguments.first&.value

  case operator.to_s
  when "%", "modulo"
    sig(args) { Number }
    code_modulo(value)
  when "&", "bitwise_and"
    sig(args) { Number }
    code_bitwise_and(value)
  when "*", "multiplication", "×"
    sig(args) { Number | String }
    code_multiplication(value)
  when "**", "power"
    sig(args) { Number }
    code_power(value)
  when "+", "plus", "self"
    sig(args) { Object.maybe }
    value ? code_plus(value) : code_self
  when "-", "minus", "unary_minus"
    sig(args) { Number.maybe }
    value ? code_minus(value) : code_unary_minus
  when "/", "division", "÷"
    sig(args) { Number }
    code_division(value)
  when "<", "inferior"
    sig(args) { Number }
    code_inferior(value)
  when "<<", "left_shift"
    sig(args) { Number }
    code_left_shift(value)
  when "<=", "inferior_or_equal"
    sig(args) { Number }
    code_inferior_or_equal(value)
  when "<=>", "compare"
    sig(args) { Number }
    code_compare(value)
  when ">", "superior"
    sig(args) { Number }
    code_superior(value)
  when ">=", "superior_or_equal"
    sig(args) { Number }
    code_superior_or_equal(value)
  when ">>", "right_shift"
    sig(args) { Number }
    code_right_shift(value)
  when "^", "bitwise_xor"
    sig(args) { Number }
    code_bitwise_xor(value)
  when "abs"
    sig(args)
    code_abs
  when "ceil"
    sig(args) { Integer.maybe }
    code_ceil(value)
  when "clone"
    sig(args)
    code_clone
  when "day", "days"
    sig(args)
    code_days
  when "decrement!"
    sig(args) { Integer.maybe }
    code_decrement!(value)
  when "decrement"
    sig(args) { Integer.maybe }
    code_decrement(value)
  when "eight?"
    sig(args)
    code_eight?
  when "even?"
    sig(args)
    code_even?
  when "five?"
    sig(args)
    code_five?
  when "floor"
    sig(args) { Integer.maybe }
    code_floor(value)
  when "four?"
    sig(args)
    code_four?
  when "hour", "hours"
    sig(args)
    code_hours
  when "increment!"
    sig(args) { Integer.maybe }
    code_increment!(value)
  when "increment"
    sig(args) { Integer.maybe }
    code_increment(value)
  when "nine?"
    sig(args)
    code_nine?
  when "odd?"
    sig(args)
    code_odd?
  when "one?"
    sig(args)
    code_one?
  when "round"
    sig(args) { Integer.maybe }
    code_round(value)
  when "seven?"
    sig(args)
    code_seven?
  when "six?"
    sig(args)
    code_six?
  when "sqrt"
    sig(args)
    code_sqrt
  when "ten?"
    sig(args)
    code_ten?
  when "three?"
    sig(args)
    code_three?
  when "times"
    sig(args) { Function }
    code_times(value, **globals)
  when "to_decimal"
    sig(args)
    code_to_decimal
  when "to_integer"
    sig(args)
    code_to_integer
  when "to_string"
    sig(args)
    code_to_string
  when "truncate"
    sig(args) { Integer.maybe }
    code_truncate(value)
  when "two?"
    sig(args)
    code_two?
  when "zero?"
    sig(args)
    code_zero?
  when "|", "bitwise_or"
    sig(args) { Number }
    code_bitwise_or(value)
  else
    super
  end
end

#code_absObject



173
174
175
# File 'lib/code/object/integer.rb', line 173

def code_abs
  Decimal.new(raw.abs)
end

#code_bitwise_and(other) ⇒ Object



177
178
179
# File 'lib/code/object/integer.rb', line 177

def code_bitwise_and(other)
  Integer.new(raw & other.raw.to_i)
end

#code_bitwise_or(other) ⇒ Object



181
182
183
# File 'lib/code/object/integer.rb', line 181

def code_bitwise_or(other)
  Integer.new(raw | other.raw.to_i)
end

#code_bitwise_xor(other) ⇒ Object



185
186
187
# File 'lib/code/object/integer.rb', line 185

def code_bitwise_xor(other)
  Integer.new(raw ^ other.raw.to_i)
end

#code_ceil(n = nil) ⇒ Object



189
190
191
192
# File 'lib/code/object/integer.rb', line 189

def code_ceil(n = nil)
  n ||= Integer.new(0)
  Integer.new(raw.ceil(n.raw))
end

#code_cloneObject



194
195
196
# File 'lib/code/object/integer.rb', line 194

def code_clone
  Integer.new(raw)
end

#code_compare(other) ⇒ Object



198
199
200
# File 'lib/code/object/integer.rb', line 198

def code_compare(other)
  Integer.new(raw <=> other.raw)
end

#code_daysObject



394
395
396
# File 'lib/code/object/integer.rb', line 394

def code_days
  Duration.new(raw.days)
end

#code_decrement(n = nil) ⇒ Object



208
209
210
211
# File 'lib/code/object/integer.rb', line 208

def code_decrement(n = nil)
  n ||= Integer.new(1)
  Integer.new(raw - n.raw)
end

#code_decrement!(n = nil) ⇒ Object



202
203
204
205
206
# File 'lib/code/object/integer.rb', line 202

def code_decrement!(n = nil)
  n ||= Integer.new(1)
  @raw -= n.raw
  self
end

#code_division(other) ⇒ Object



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

def code_division(other)
  Decimal.new(BigDecimal(raw) / other.raw)
end

#code_eight?Boolean

Returns:



217
218
219
# File 'lib/code/object/integer.rb', line 217

def code_eight?
  Boolean.new(raw == 8)
end

#code_even?Boolean

Returns:



221
222
223
# File 'lib/code/object/integer.rb', line 221

def code_even?
  Boolean.new(raw.even?)
end

#code_five?Boolean

Returns:



225
226
227
# File 'lib/code/object/integer.rb', line 225

def code_five?
  Boolean.new(raw == 5)
end

#code_floor(n = nil) ⇒ Object



229
230
231
232
# File 'lib/code/object/integer.rb', line 229

def code_floor(n = nil)
  n ||= Integer.new(0)
  Integer.new(raw.floor(n.raw))
end

#code_four?Boolean

Returns:



234
235
236
# File 'lib/code/object/integer.rb', line 234

def code_four?
  Boolean.new(raw == 4)
end

#code_hoursObject



390
391
392
# File 'lib/code/object/integer.rb', line 390

def code_hours
  Duration.new(raw.hours)
end

#code_increment(n = nil) ⇒ Object



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

def code_increment(n = nil)
  n ||= Integer.new(1)
  Integer.new(raw + n.raw)
end

#code_increment!(n = nil) ⇒ Object



238
239
240
241
242
# File 'lib/code/object/integer.rb', line 238

def code_increment!(n = nil)
  n ||= Integer.new(1)
  @raw += n.raw
  self
end

#code_inferior(other) ⇒ Object



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

def code_inferior(other)
  Boolean.new(raw < other.raw)
end

#code_inferior_or_equal(other) ⇒ Object



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

def code_inferior_or_equal(other)
  Boolean.new(raw <= other.raw)
end

#code_left_shift(other) ⇒ Object



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

def code_left_shift(other)
  Integer.new(raw << other.raw.to_i)
end

#code_minus(other) ⇒ Object



261
262
263
264
265
266
267
# File 'lib/code/object/integer.rb', line 261

def code_minus(other)
  if other.is_a?(Integer)
    Integer.new(raw - other.raw)
  else
    Decimal.new(raw - other.raw)
  end
end

#code_modulo(other) ⇒ Object



269
270
271
272
273
274
275
# File 'lib/code/object/integer.rb', line 269

def code_modulo(other)
  if other.is_a?(Integer)
    Integer.new(raw % other.raw)
  else
    Decimal.new(raw % other.raw)
  end
end

#code_multiplication(other) ⇒ Object



277
278
279
280
281
282
283
284
285
# File 'lib/code/object/integer.rb', line 277

def code_multiplication(other)
  if other.is_a?(Integer)
    Integer.new(raw * other.raw)
  elsif other.is_a?(Decimal)
    Decimal.new(raw * other.raw)
  else
    String.new(other.raw * raw)
  end
end

#code_nine?Boolean

Returns:



287
288
289
# File 'lib/code/object/integer.rb', line 287

def code_nine?
  Boolean.new(raw == 9)
end

#code_odd?Boolean

Returns:



291
292
293
# File 'lib/code/object/integer.rb', line 291

def code_odd?
  Boolean.new(raw.odd?)
end

#code_one?Boolean

Returns:



295
296
297
# File 'lib/code/object/integer.rb', line 295

def code_one?
  Boolean.new(raw == 1)
end

#code_plus(other) ⇒ Object



299
300
301
302
303
304
305
306
307
# File 'lib/code/object/integer.rb', line 299

def code_plus(other)
  if other.is_a?(Integer)
    Integer.new(raw + other.raw)
  elsif other.is_a?(Decimal)
    Decimal.new(raw + other.raw)
  else
    String.new(to_s + other.to_s)
  end
end

#code_power(other) ⇒ Object



309
310
311
312
313
314
315
# File 'lib/code/object/integer.rb', line 309

def code_power(other)
  if other.is_a?(Integer)
    Integer.new(raw**other.raw)
  else
    Decimal.new(raw**other.raw)
  end
end

#code_right_shift(other) ⇒ Object



317
318
319
# File 'lib/code/object/integer.rb', line 317

def code_right_shift(other)
  Integer.new(raw >> other.raw.to_i)
end

#code_round(n = nil) ⇒ Object



321
322
323
324
# File 'lib/code/object/integer.rb', line 321

def code_round(n = nil)
  n ||= Integer.new(0)
  Integer.new(raw.round(n.raw))
end

#code_seven?Boolean

Returns:



326
327
328
# File 'lib/code/object/integer.rb', line 326

def code_seven?
  Boolean.new(raw == 7)
end

#code_six?Boolean

Returns:



330
331
332
# File 'lib/code/object/integer.rb', line 330

def code_six?
  Boolean.new(raw == 6)
end

#code_sqrtObject



334
335
336
# File 'lib/code/object/integer.rb', line 334

def code_sqrt
  Decimal.new(Math.sqrt(raw).to_s)
end

#code_superior(other) ⇒ Object



338
339
340
# File 'lib/code/object/integer.rb', line 338

def code_superior(other)
  Boolean.new(raw > other.raw)
end

#code_superior_or_equal(other) ⇒ Object



342
343
344
# File 'lib/code/object/integer.rb', line 342

def code_superior_or_equal(other)
  Boolean.new(raw >= other.raw)
end

#code_ten?Boolean

Returns:



346
347
348
# File 'lib/code/object/integer.rb', line 346

def code_ten?
  Boolean.new(raw == 10)
end

#code_three?Boolean

Returns:



350
351
352
# File 'lib/code/object/integer.rb', line 350

def code_three?
  Boolean.new(raw == 3)
end

#code_times(argument, **globals) ⇒ Object



362
363
364
365
366
367
368
369
370
371
# File 'lib/code/object/integer.rb', line 362

def code_times(argument, **globals)
  raw.times do |element|
    argument.call(
      arguments: [Argument.new(Integer.new(element))],
      **globals
    )
  end

  self
end

#code_to_decimalObject



354
355
356
# File 'lib/code/object/integer.rb', line 354

def code_to_decimal
  Decimal.new(raw)
end

#code_to_integerObject



358
359
360
# File 'lib/code/object/integer.rb', line 358

def code_to_integer
  Integer.new(raw)
end

#code_truncate(n = nil) ⇒ Object



373
374
375
376
# File 'lib/code/object/integer.rb', line 373

def code_truncate(n = nil)
  n ||= Integer.new(0)
  Integer.new(raw.truncate(n.raw))
end

#code_two?Boolean

Returns:



378
379
380
# File 'lib/code/object/integer.rb', line 378

def code_two?
  Boolean.new(raw == 2)
end

#code_unary_minusObject



382
383
384
# File 'lib/code/object/integer.rb', line 382

def code_unary_minus
  Integer.new(-raw)
end

#code_zero?Boolean

Returns:



386
387
388
# File 'lib/code/object/integer.rb', line 386

def code_zero?
  Boolean.new(raw.zero?)
end

#inspectObject



398
399
400
# File 'lib/code/object/integer.rb', line 398

def inspect
  to_s
end

#succObject



402
403
404
# File 'lib/code/object/integer.rb', line 402

def succ
  Integer.new(raw + 1)
end

#to_sObject



406
407
408
# File 'lib/code/object/integer.rb', line 406

def to_s
  raw.to_s
end