Class: Array

Inherits:
Object show all
Defined in:
lib/pretty_debug.rb

Overview

Terminal

Direct Known Subclasses

PrettyArray

Constant Summary collapse

SingleLength =
50

Instance Method Summary collapse

Instance Method Details

#align(ellipsis_limit = nil) ⇒ Object



218
219
220
221
222
223
224
225
# File 'lib/pretty_debug.rb', line 218

def align ellipsis_limit = nil
	transpose.map do |col|
		just = case col.first; when Numeric then :rjust; else :ljust end
		width = col.map{|cell| cell.to_s.length}.max
		max = ellipsis_limit || width
		col.map{|cell| cell.to_s.ellipsis(max).__send__(just, width > max ? max : width)}
	end.transpose
end

#common_affixObject



233
234
235
236
237
238
239
# File 'lib/pretty_debug.rb', line 233

def common_affix
	each{|e| class_check(e, String){"All elements must be a String".freeze}}
	first, *others = self
	i = - 1
	loop{break unless first[i] and others.all?{|s| first[i] == s[i]}; i -= 1}
	first[i + 1, -(i + 1)]
end

#common_prefixObject



226
227
228
229
230
231
232
# File 'lib/pretty_debug.rb', line 226

def common_prefix
	each{|e| class_check(e, String){"All elements must be a String".freeze}}
	first, *others = self
	i = 0
	loop{break unless first[i] and others.all?{|s| first[i] == s[i]}; i += 1}
	first[0, i]
end

#inspectObject



213
214
215
216
217
# File 'lib/pretty_debug.rb', line 213

def inspect
	s = map(&:inspect)
	length < 2 || s.map(&:length).inject(:+) < SingleLength ?
		"[#{s.join(", ".freeze)}]" : "[#$/#{s.join(",#$/".freeze).indent}#$/]"
end