lcs
packageThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
Documentation¶
Overview¶
package lcs contains code to find longest-common-subsequences(and diffs)
Index¶
Constants¶
This section is empty.
Variables¶
This section is empty.
Functions¶
This section is empty.
Types¶
typeDiff¶
type Diff struct {Start, Endint// offsets of portion to delete in AReplStart, ReplEndint// offset of replacement text in B}
A Diff is a replacement of a portion of A by a portion of B.
funcDiffBytes¶added inv0.5.0
DiffBytes returns the differences between two byte sequences.It does not respect rune boundaries.
funcDiffStrings¶added inv0.5.0
DiffStrings returns the differences between two strings.It does not respect rune boundaries.