module Diff::LCS

def lcs(other, &block) #:yields self[i] if there are matched subsequences:

:yields self[i] if there are matched subsequences:
lcs = seq1.lcs(seq2)

+self+ and +other+. See Diff::LCS#lcs.
Returns an Array containing the longest common subsequence(s) between
rubocop:disable Style/Documentation
def lcs(other, &block) #:yields self[i] if there are matched subsequences:
  Diff::LCS.lcs(self, other, &block)
end