Method: Diff::LCS#traverse_sequences
- Defined in:
- lib/diff/lcs.rb
#traverse_sequences(other, callbacks = nil, &block) ⇒ Object
Traverses the discovered longest common subsequences between self and other. See Diff::LCS#traverse_sequences.
88 89 90 |
# File 'lib/diff/lcs.rb', line 88 def traverse_sequences(other, callbacks = nil, &block) Diff::LCS.traverse_sequences(self, other, callbacks || Diff::LCS::SequenceCallbacks, &block) end |