Method: KTextEditor::Range#==
- Defined in:
- lib/ruber/ktexteditor_sugar.rb
#==(other) ⇒ Boolean
Override of @Object#==@
97 98 99 100 |
# File 'lib/ruber/ktexteditor_sugar.rb', line 97 def == other return false unless other.is_a? KTextEditor::Range start == other.start and self.end == other.end end |