Class: Code::Object::String

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

Constant Summary

Constants inherited from Code::Object

NUMBER_CLASSES

Instance Attribute Summary

Attributes included from Concerns::Shared

#methods, #raw

Instance Method Summary collapse

Methods inherited from Code::Object

code_new, #code_new, maybe, #name, repeat, |

Methods included from Concerns::Shared

#<=>, #==, #as_json, #blank?, #code_and, #code_as_json, #code_blank?, #code_compare, #code_deep_duplicate, #code_different, #code_duplicate, #code_equal, #code_exclamation_mark, #code_exclusive_range, #code_falsy?, #code_fetch, code_fetch, code_get, #code_get, #code_greater, #code_greater_or_equal, #code_inclusive_range, #code_less, #code_less_or_equal, #code_methods, #code_name, #code_nothing?, #code_or, #code_presence, #code_presence_in, #code_present?, #code_self, #code_set, 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) ⇒ String

Returns a new instance of String.



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/code/object/string.rb', line 6

def initialize(*args, **_kargs, &_block)
  self.raw =
    if args.first.is_an?(Class)
      args.first.raw.name
    elsif args.first.is_an?(Object)
      args.first.raw.to_s
    elsif args.first.is_a?(::Class)
      args.first.name
    elsif args.first
      args.first.to_s
    else
      ""
    end
end

Instance Method Details

#call(**args) ⇒ Object



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
# File 'lib/code/object/string.rb', line 21

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 "&", "to_function"
    sig(args)
    code_to_function(**globals)
  when "*"
    sig(args) { Integer | Decimal }
    code_multiplication(code_value)
  when "+"
    sig(args) { Object }
    code_plus(code_value)
  when "downcase"
    sig(args)
    code_downcase
  when "include?"
    sig(args) { String }
    code_include?(code_value)
  when "starts_with?"
    sig(args) { String }
    code_starts_with?(code_value)
  when "first"
    sig(args) { Integer.maybe }
    code_first(code_value)
  when "reverse"
    sig(args)
    code_reverse
  when "parameterize"
    sig(args)
    code_parameterize
  when "substitute"
    sig(args) { [String, String.maybe] }
    code_substitute(*code_arguments.raw)
  when "upcase"
    sig(args)
    code_upcase
  when "size"
    sig(args)
    code_size
  when "strip"
    sig(args)
    code_strip
  when "split"
    sig(args) { String }
    code_split(code_value)
  else
    super
  end
end

#code_downcaseObject



75
76
77
# File 'lib/code/object/string.rb', line 75

def code_downcase
  String.new(raw.downcase)
end

#code_first(n = nil) ⇒ Object



126
127
128
129
130
# File 'lib/code/object/string.rb', line 126

def code_first(n = nil)
  code_n = n.to_code
  code_n = Integer.new(1) if code_n.nothing?
  String.new(raw.first(code_n.raw))
end

#code_include?(value) ⇒ Boolean

Returns:



83
84
85
86
# File 'lib/code/object/string.rb', line 83

def code_include?(value)
  code_value = value.to_code
  Boolean.new(raw.include?(code_value.raw))
end

#code_inspectObject



111
112
113
# File 'lib/code/object/string.rb', line 111

def code_inspect
  String.new(raw.inspect)
end

#code_multiplication(other) ⇒ Object



88
89
90
91
# File 'lib/code/object/string.rb', line 88

def code_multiplication(other)
  code_other = other.to_code
  String.new(raw * code_other.raw)
end

#code_parameterizeObject



115
116
117
# File 'lib/code/object/string.rb', line 115

def code_parameterize
  String.new(raw.parameterize)
end

#code_plus(other) ⇒ Object



98
99
100
101
# File 'lib/code/object/string.rb', line 98

def code_plus(other)
  code_other = other.to_code
  String.new(raw + code_other.to_s)
end

#code_reverseObject



103
104
105
# File 'lib/code/object/string.rb', line 103

def code_reverse
  String.new(raw.reverse)
end

#code_sizeObject



132
133
134
# File 'lib/code/object/string.rb', line 132

def code_size
  Integer.new(raw.size)
end

#code_split(value) ⇒ Object



140
141
142
143
144
# File 'lib/code/object/string.rb', line 140

def code_split(value)
  code_value = value.to_code

  List.new(raw.split(code_value.to_s))
end

#code_starts_with?(value) ⇒ Boolean

Returns:



93
94
95
96
# File 'lib/code/object/string.rb', line 93

def code_starts_with?(value)
  code_value = value.to_code
  Boolean.new(raw.start_with?(code_value.raw))
end

#code_stripObject



136
137
138
# File 'lib/code/object/string.rb', line 136

def code_strip
  String.new(raw.strip)
end

#code_substitute(from = nil, to = nil) ⇒ Object



119
120
121
122
123
124
# File 'lib/code/object/string.rb', line 119

def code_substitute(from = nil, to = nil)
  code_from = from.to_code
  code_to = to.to_code

  String.new(raw.gsub(code_from.to_s, code_to.to_s))
end

#code_to_function(**_globals) ⇒ Object



107
108
109
# File 'lib/code/object/string.rb', line 107

def code_to_function(**_globals)
  Function.new([{ name: "_" }], "_.#{raw}")
end

#code_upcaseObject



79
80
81
# File 'lib/code/object/string.rb', line 79

def code_upcase
  String.new(raw.upcase)
end

#present?Boolean

Returns:



146
147
148
# File 'lib/code/object/string.rb', line 146

def present?
  raw.present?
end