module Diakonos::RangeDelegator
Public Instance Methods
contains?(row, col)
click to toggle source
# File lib/diakonos/range.rb, line 27 def contains?(row, col) @range.contains?(row, col) end
end_col()
click to toggle source
# File lib/diakonos/range.rb, line 25 def end_col; @range.end_col; end
end_row()
click to toggle source
# File lib/diakonos/range.rb, line 23 def end_row; @range.end_row; end
start_col()
click to toggle source
# File lib/diakonos/range.rb, line 24 def start_col; @range.start_col; end
start_row()
click to toggle source
# File lib/diakonos/range.rb, line 22 def start_row; @range.start_row; end