golang-github-schollz-closestmatch 2.1.0-3 source package in Ubuntu

Changelog

golang-github-schollz-closestmatch (2.1.0-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints.
    + golang-github-schollz-closestmatch-dev: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Tue, 29 Nov 2022 18:57:25 +0000

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-schollz-closestmatch_2.1.0-3.dsc 2.3 KiB aa97f0ead64a22689eba56909cc71d54a93ff00ec9dfa9647d02bf97788f4fb9
golang-github-schollz-closestmatch_2.1.0.orig.tar.gz 534.6 KiB 7e4cac19c7f79ca66da70b47f3ea06ede84a9609ce3790417e98ddc3b176a7a5
golang-github-schollz-closestmatch_2.1.0-3.debian.tar.xz 2.6 KiB 23d7b09b773a5578e7d1b2fb9ccdd1a7f5fbda2a71567ad61c26f8dc19011459

Available diffs

No changes file available.

Binary packages built by this source

golang-github-schollz-closestmatch-dev: Golang library for fuzzy matching within a set of strings

 Closestmatch is a simple and fast Go library for fuzzy matching an
 input string to a list of target strings. closestmatch is useful for
 handling input from a user where the input (which could be misspelled or
 out of order) needs to match a key in a database. closestmatch uses a
 bag-of-words approach (https://en.wikipedia.org/wiki/Bag-of-words_model)
 to precompute character n-grams to represent each possible target
 string. The closest matches have highest overlap between the sets of
 n-grams. The precomputation scales well and is much faster and more
 accurate than Levenshtein for long strings.