module Diff::LCS

def traverse_sequences(other, callbacks = nil, &block)

+other+. See Diff::LCS#traverse_sequences.
Traverses the discovered longest common subsequences between +self+ and
def traverse_sequences(other, callbacks = nil, &block)
  traverse_sequences(self, other, callbacks ||
                     Diff::LCS.YieldingCallbacks, &block)
end