Class: Array
- Defined in:
- lib/lite/ruby/array.rb,
lib/lite/ruby/safe/array.rb
Instance Method Summary collapse
- #after(value) ⇒ Object
- #all_after(value) ⇒ Object
- #all_before(value) ⇒ Object
- #assert_all_min_values!(*valid_values) ⇒ Object
- #assert_all_valid_values!(*valid_values) ⇒ Object
- #assert_all_value_presence! ⇒ Object
- #assert_min_values!(*valid_values) ⇒ Object
- #assert_valid_values!(*valid_values) ⇒ Object
- #assert_value_presence! ⇒ Object
- #before(value) ⇒ Object
-
#bury(*args) ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/MethodLength, Metrics/PerceivedComplexity rubocop:disable Style/GuardClause, Style/IfInsideElse.
-
#contains_all?(other) ⇒ Boolean
rubocop:enable Style/GuardClause, Style/IfInsideElse rubocop:enable Metrics/AbcSize, Metrics/MethodLength, Metrics/PerceivedComplexity.
- #contains_any?(other) ⇒ Boolean
- #contains_none?(other) ⇒ Boolean
- #deep_dup ⇒ Object
- #delete_first ⇒ Object
- #delete_first! ⇒ Object
- #delete_last ⇒ Object
- #delete_last! ⇒ Object
- #delete_values(*args) ⇒ Object
- #demote(value) ⇒ Object
- #demote!(value) ⇒ Object
- #denillify(identity = 0) ⇒ Object
- #denillify!(identity = 0) ⇒ Object
- #divergence(other) ⇒ Object
- #duplicates(minimum = 2) ⇒ Object
- #except(*values) ⇒ Object (also: #reject_values)
- #except!(*values) ⇒ Object (also: #reject_values!)
- #extract! ⇒ Object
- #from(position) ⇒ Object
- #fulfill(value, amount) ⇒ Object
- #groups(number) ⇒ Object
-
#in_groups(number, fill_with = nil, &block) ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength.
-
#in_groups_of(number, fill_with = nil, &block) ⇒ Object
rubocop:disable Metrics/MethodLength, Style/GuardClause.
- #indexes(value) ⇒ Object (also: #indices)
- #match(value) ⇒ Object
- #merge(*values) ⇒ Object
- #merge!(*values) ⇒ Object
- #nillify ⇒ Object
- #nillify! ⇒ Object
- #only(*values) ⇒ Object (also: #select_values)
- #only!(*values) ⇒ Object (also: #select_values!)
- #position(value) ⇒ Object
- #positions(value) ⇒ Object
- #probability ⇒ Object
- #promote(value) ⇒ Object
- #promote!(value) ⇒ Object
- #rand_sample(max = nil) ⇒ Object
- #rposition(value) ⇒ Object
- #sample! ⇒ Object
-
#split(value = nil) ⇒ Object
rubocop:disable Metrics/MethodLength, Style/ExplicitBlockArgument.
- #strip ⇒ Object (also: #compact_blank)
- #strip! ⇒ Object (also: #compact_blank!)
- #swap(from, to) ⇒ Object
-
#to(position) ⇒ Object
rubocop:enable Metrics/MethodLength, Style/ExplicitBlockArgument.
- #to_sentence(options = {}) ⇒ Object
Instance Method Details
#after(value) ⇒ Object
55 56 57 58 59 |
# File 'lib/lite/ruby/array.rb', line 55 def after(value) return unless include?(value) self[(index(value) + 1) % size] end |
#all_after(value) ⇒ Object
61 62 63 64 65 66 67 68 |
# File 'lib/lite/ruby/array.rb', line 61 def all_after(value) return unless include?(value) i = index(value) return if i == (size - 1) self[(i + 1)..-1] end |
#all_before(value) ⇒ Object
70 71 72 73 74 75 76 77 |
# File 'lib/lite/ruby/array.rb', line 70 def all_before(value) return unless include?(value) i = index(value) return if i.zero? self[0..(i - 1)] end |
#assert_all_min_values!(*valid_values) ⇒ Object
19 20 21 22 23 |
# File 'lib/lite/ruby/array.rb', line 19 def assert_all_min_values!(*valid_values) return assert_min_values!(*valid_values) unless empty? raise ArgumentError, 'An empty array is not allowed' end |
#assert_all_valid_values!(*valid_values) ⇒ Object
35 36 37 38 39 |
# File 'lib/lite/ruby/array.rb', line 35 def assert_all_valid_values!(*valid_values) return assert_valid_values!(*valid_values) unless empty? raise ArgumentError, 'An empty array is not allowed' end |
#assert_all_value_presence! ⇒ Object
49 50 51 52 53 |
# File 'lib/lite/ruby/array.rb', line 49 def assert_all_value_presence! return assert_value_presence! unless empty? raise ArgumentError, 'An empty array is not allowed' end |
#assert_min_values!(*valid_values) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/lite/ruby/array.rb', line 5 def assert_min_values!(*valid_values) return self if empty? valid_values.each do |value| next if include?(value) raise ArgumentError, "Missing value: #{value.inspect}. " \ "Minimum values are: #{valid_values.map(&:inspect).join(', ')}" end self end |
#assert_valid_values!(*valid_values) ⇒ Object
25 26 27 28 29 30 31 32 33 |
# File 'lib/lite/ruby/array.rb', line 25 def assert_valid_values!(*valid_values) each do |value| next if valid_values.include?(value) raise ArgumentError, "Invalid value: #{value.inspect}. " \ "Allowed values are: #{valid_values.map(&:inspect).join(', ')}" end end |
#assert_value_presence! ⇒ Object
41 42 43 44 45 46 47 |
# File 'lib/lite/ruby/array.rb', line 41 def assert_value_presence! each do |value| next if value.respond_to?(:present?) ? value.present? : value raise ArgumentError, "A #{value.inspect} value is not allowed" end end |
#before(value) ⇒ Object
79 80 81 82 83 |
# File 'lib/lite/ruby/array.rb', line 79 def before(value) return unless include?(value) self[(index(value) - 1) % size] end |
#bury(*args) ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/MethodLength, Metrics/PerceivedComplexity rubocop:disable Style/GuardClause, Style/IfInsideElse
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/lite/ruby/array.rb', line 87 def bury(*args) if args.count < 2 raise ArgumentError, '2 or more arguments required' elsif args.count == 2 if args[0].is_a?(Integer) self[args[0]] = args[1] else self << { args[0] => args[1] } end else if args[0].is_a?(Integer) arg = args.shift self[arg] = [] unless self[arg] self[arg].bury(*args) else self << {}.bury(*args) end end self end |
#contains_all?(other) ⇒ Boolean
rubocop:enable Style/GuardClause, Style/IfInsideElse rubocop:enable Metrics/AbcSize, Metrics/MethodLength, Metrics/PerceivedComplexity
111 112 113 |
# File 'lib/lite/ruby/array.rb', line 111 def contains_all?(other) (other & self) == self end |
#contains_any?(other) ⇒ Boolean
115 116 117 |
# File 'lib/lite/ruby/array.rb', line 115 def contains_any?(other) !contains_none?(other) end |
#contains_none?(other) ⇒ Boolean
119 120 121 |
# File 'lib/lite/ruby/array.rb', line 119 def contains_none?(other) (other & self).empty? end |
#deep_dup ⇒ Object
5 6 7 |
# File 'lib/lite/ruby/safe/array.rb', line 5 def deep_dup map(&:deep_dup) end |
#delete_first ⇒ Object
123 124 125 |
# File 'lib/lite/ruby/array.rb', line 123 def delete_first self[1..-1] end |
#delete_first! ⇒ Object
127 128 129 |
# File 'lib/lite/ruby/array.rb', line 127 def delete_first! replace(delete_first) end |
#delete_last ⇒ Object
131 132 133 |
# File 'lib/lite/ruby/array.rb', line 131 def delete_last self[0...-1] end |
#delete_last! ⇒ Object
135 136 137 |
# File 'lib/lite/ruby/array.rb', line 135 def delete_last! replace(delete_last) end |
#delete_values(*args) ⇒ Object
139 140 141 |
# File 'lib/lite/ruby/array.rb', line 139 def delete_values(*args) args.each_with_object([]) { |val, array| array << delete(val) } end |
#demote(value) ⇒ Object
143 144 145 |
# File 'lib/lite/ruby/array.rb', line 143 def demote(value) sort_by { |val| val == value ? 0 : -1 } end |
#demote!(value) ⇒ Object
147 148 149 |
# File 'lib/lite/ruby/array.rb', line 147 def demote!(value) replace(demote(value)) end |
#denillify(identity = 0) ⇒ Object
151 152 153 |
# File 'lib/lite/ruby/array.rb', line 151 def denillify(identity = 0) map { |val| val || identity } end |
#denillify!(identity = 0) ⇒ Object
155 156 157 |
# File 'lib/lite/ruby/array.rb', line 155 def denillify!(identity = 0) replace(denillify(identity)) end |
#divergence(other) ⇒ Object
159 160 161 |
# File 'lib/lite/ruby/array.rb', line 159 def divergence(other) (self - other) | (other - self) end |
#duplicates(minimum = 2) ⇒ Object
163 164 165 166 167 |
# File 'lib/lite/ruby/array.rb', line 163 def duplicates(minimum = 2) hash = Hash.new(0) each { |val| hash[val] += 1 } hash.delete_if { |_, val| val < minimum }.keys end |
#except(*values) ⇒ Object Also known as: reject_values
169 170 171 |
# File 'lib/lite/ruby/array.rb', line 169 def except(*values) reject { |val| values.include?(val) } end |
#except!(*values) ⇒ Object Also known as: reject_values!
173 174 175 176 |
# File 'lib/lite/ruby/array.rb', line 173 def except!(*values) reject! { |val| values.include?(val) } self end |
#extract! ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/lite/ruby/safe/array.rb', line 9 def extract! return to_enum(:extract!) { size } unless block_given? extracted_elements = [] reject! { |element| extracted_elements << element if yield(element) } extracted_elements end |
#from(position) ⇒ Object
17 18 19 |
# File 'lib/lite/ruby/safe/array.rb', line 17 def from(position) self[position, size] || [] end |
#fulfill(value, amount) ⇒ Object
178 179 180 181 182 |
# File 'lib/lite/ruby/array.rb', line 178 def fulfill(value, amount) return self if amount <= size fill(value, size..(amount - 1)) end |
#groups(number) ⇒ Object
184 185 186 187 188 189 190 191 192 |
# File 'lib/lite/ruby/array.rb', line 184 def groups(number) return [] if number <= 0 num, rem = size.divmod(number) collection = (0..(num - 1)).collect { |val| self[(val * number), number] } return collection unless rem.positive? collection << self[-rem, rem] end |
#in_groups(number, fill_with = nil, &block) ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/lite/ruby/safe/array.rb', line 22 def in_groups(number, fill_with = nil, &block) collection_size = size division = collection_size.div(number) modulo = collection_size % number collection = [] start = 0 number.times do |int| mod_gt_zero = modulo.positive? grouping = division + (mod_gt_zero && modulo > int ? 1 : 0) collection << last_group = slice(start, grouping) last_group << fill_with if (fill_with != false) && mod_gt_zero && (grouping == division) start += grouping end return collection unless defined?(yield) collection.each(&block) end |
#in_groups_of(number, fill_with = nil, &block) ⇒ Object
rubocop:disable Metrics/MethodLength, Style/GuardClause
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/lite/ruby/safe/array.rb', line 44 def in_groups_of(number, fill_with = nil, &block) if number.to_i <= 0 raise ArgumentError, "Group size must be a positive integer, was #{number.inspect}" elsif fill_with == false collection = self else padding = (number - (size % number)) % number collection = dup.concat(Array.new(padding, fill_with)) end sliced_collection = collection.each_slice(number) return sliced_collection.to_a unless defined?(yield) sliced_collection(&block) end |
#indexes(value) ⇒ Object Also known as: indices
194 195 196 197 198 |
# File 'lib/lite/ruby/array.rb', line 194 def indexes(value) array = [] each_with_index { |val, i| array << i if value == val } array end |
#match(value) ⇒ Object
200 201 202 |
# File 'lib/lite/ruby/array.rb', line 200 def match(value) find { |val| value == val } end |
#merge(*values) ⇒ Object
204 205 206 |
# File 'lib/lite/ruby/array.rb', line 204 def merge(*values) dup.merge!(*values) end |
#merge!(*values) ⇒ Object
208 209 210 |
# File 'lib/lite/ruby/array.rb', line 208 def merge!(*values) values.each_with_object(self) { |val, arr| arr.concat(val) } end |
#nillify ⇒ Object
212 213 214 |
# File 'lib/lite/ruby/array.rb', line 212 def nillify map { |val| !val.nil? && (val.try(:blank?) || val.try(:to_s).blank?) ? nil : val } end |
#nillify! ⇒ Object
216 217 218 |
# File 'lib/lite/ruby/array.rb', line 216 def nillify! replace(nillify) end |
#only(*values) ⇒ Object Also known as: select_values
220 221 222 |
# File 'lib/lite/ruby/array.rb', line 220 def only(*values) select { |val| values.include?(val) } end |
#only!(*values) ⇒ Object Also known as: select_values!
224 225 226 227 |
# File 'lib/lite/ruby/array.rb', line 224 def only!(*values) select! { |val| values.include?(val) } self end |
#position(value) ⇒ Object
229 230 231 232 233 234 |
# File 'lib/lite/ruby/array.rb', line 229 def position(value) idx = index(value) return idx if idx.nil? idx + 1 end |
#positions(value) ⇒ Object
236 237 238 |
# File 'lib/lite/ruby/array.rb', line 236 def positions(value) indexes(value).map { |val| val + 1 } end |
#probability ⇒ Object
240 241 242 243 244 245 246 247 248 249 250 251 |
# File 'lib/lite/ruby/array.rb', line 240 def probability hash = Hash.new(0.0) differ = 0.0 each do |val| hash[val] += 1.0 differ += 1.0 end hash.each_key { |val| hash[val] /= differ } hash end |
#promote(value) ⇒ Object
253 254 255 |
# File 'lib/lite/ruby/array.rb', line 253 def promote(value) sort_by { |val| val == value ? -1 : 0 } end |
#promote!(value) ⇒ Object
257 258 259 |
# File 'lib/lite/ruby/array.rb', line 257 def promote!(value) sort_by! { |val| val == value ? -1 : 0 } end |
#rand_sample(max = nil) ⇒ Object
261 262 263 264 |
# File 'lib/lite/ruby/array.rb', line 261 def rand_sample(max = nil) amount = rand(1..(max || size)) sample(amount) end |
#rposition(value) ⇒ Object
266 267 268 269 270 271 |
# File 'lib/lite/ruby/array.rb', line 266 def rposition(value) idx = rindex(value) return idx if idx.nil? idx + 1 end |
#sample! ⇒ Object
273 274 275 |
# File 'lib/lite/ruby/array.rb', line 273 def sample! delete_at(Random.rand(size - 1)) end |
#split(value = nil) ⇒ Object
rubocop:disable Metrics/MethodLength, Style/ExplicitBlockArgument
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/lite/ruby/safe/array.rb', line 62 def split(value = nil) arr = dup result = [] if block_given? while (idx = arr.index { |i| yield(i) }) result << arr.shift(idx) arr.shift end else while (idx = arr.index(value)) result << arr.shift(idx) arr.shift end end result << arr end |
#strip ⇒ Object Also known as: compact_blank
277 278 279 |
# File 'lib/lite/ruby/array.rb', line 277 def strip reject(&:blank?) end |
#strip! ⇒ Object Also known as: compact_blank!
281 282 283 284 |
# File 'lib/lite/ruby/array.rb', line 281 def strip! reject!(&:blank?) self end |
#swap(from, to) ⇒ Object
286 287 288 289 |
# File 'lib/lite/ruby/array.rb', line 286 def swap(from, to) self[from], self[to] = self[to], self[from] self end |
#to(position) ⇒ Object
rubocop:enable Metrics/MethodLength, Style/ExplicitBlockArgument
82 83 84 85 86 |
# File 'lib/lite/ruby/safe/array.rb', line 82 def to(position) return first(position + 1) if position >= 0 self[0..position] end |
#to_sentence(options = {}) ⇒ Object
88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/lite/ruby/safe/array.rb', line 88 def to_sentence( = {}) words_connector = [:words_connector] || ', ' two_words_connector = [:two_words_connector] || ' and ' last_word_connector = [:last_word_connector] || ', and ' case size when 0 then '' when 1 then self[0].to_s when 2 then "#{self[0]}#{two_words_connector}#{self[1]}" else "#{self[0...-1].join(words_connector)}#{last_word_connector}#{self[-1]}" end end |