Method: Deleted#initialize
- Defined in:
- lib/merge3.rb
#initialize(start, from, string) ⇒ Deleted
Returns a new instance of Deleted.
712 713 714 715 716 717 718 719 |
# File 'lib/merge3.rb', line 712 def initialize start , from , string @start = start @length = string.length @str = string @from = from @whitespace = [] raise "Error nil string =#{start} length=#{length} str=-#{@str}=" if string.nil? end |