func github.com/sergi/go-diff/diffmatchpatch.commonSuffixLength

5 uses

	github.com/sergi/go-diff/diffmatchpatch (current package)
		diff.go#L113: 	commonlength = commonSuffixLength(text1, text2)
		diff.go#L470: 	return commonSuffixLength([]rune(text1), []rune(text2))
		diff.go#L486: func commonSuffixLength(text1, text2 []rune) int {
		diff.go#L620: 		suffixLength := commonSuffixLength(l[:i], s[:j])
		diff.go#L1039: 					commonlength = commonSuffixLength(textInsert, textDelete)