Transform an array into another array or a string into another string using only basic transformations https://levenshtein-transformations.aparoksha.dev/
Go to file
david-swift 706806433f
All checks were successful
Deploy Docs / publish (push) Successful in 16s
SwiftLint / SwiftLint (push) Successful in 3s
Add initializer without replace
2024-10-31 18:26:37 +01:00
.gitea Migrate to the Aparoksha gitea instance 2024-10-07 09:51:52 +02:00
data Initial commit 2024-01-01 11:57:11 +01:00
Sources/LevenshteinTransformations Add initializer without replace 2024-10-31 18:26:37 +01:00
Tests Initial commit 2024-01-01 11:57:11 +01:00
.gitignore Initial commit 2024-01-01 11:57:11 +01:00
.swiftlint.yml Migrate to the Aparoksha gitea instance 2024-10-07 09:51:52 +02:00
LICENSE.md Initial commit 2024-01-01 11:57:11 +01:00
Package.swift Update to Swift 6 2024-09-29 13:09:58 +02:00
README.md Migrate to the Aparoksha gitea instance 2024-10-07 09:51:52 +02:00

Levenshtein Transformations Icon

Levenshtein Transformations

Documentation · Code

Transform an array into any other array of the same type, or a string into any other string, using only the three transformations replace, delete and insert.

Table of Contents

Installation

  1. Open your Swift package in GNOME Builder, Xcode, or any other IDE.
  2. Open the Package.swift file.
  3. Into the Package initializer, under dependencies, paste:
.package(url: "https://git.aparoksha.dev/aparoksha/levenshtein-transformations", from: "0.1.0")   

Usage

Read the Getting Started article to learn how to use this package.

Thanks

  • DocC used for the documentation
  • SwiftLint for checking whether code style conventions are violated
  • The programming language Swift