Class: Array
Instance Method Summary collapse
Instance Method Details
#padd_to_fours!(fill = "0") ⇒ Object
2 3 4 5 6 7 |
# File 'lib/list_augmenter.rb', line 2 def padd_to_fours!(fill = "0") while (self.length % 4) != 0 self.unshift(fill) end self end |