Merge pull request #1 from YusukeHosonuma/welcome/github-actions
Run-length encoding (RLE) library for Swift.
// Encode SwiftRLE.encode("ABBBCCD") // "1A3B2C1D" SwiftRLE.encode("ABBBCCD", strategy: .normal) // "1A3B2C1D" SwiftRLE.encode("ABBBCCD", strategy: .omitOneDigit) // "A3B2CD" // Decode SwiftRLE.decode("1A3B2C1D") // "ABBBCCD" SwiftRLE.decode("A3B2CD") // "ABBBCCD"
.package(url: "https://github.com/YusukeHosonuma/SwiftRLE.git", from: "0.1.0")
Yusuke Hosonuma / tobi462@gmail.com
SwiftRLE is available under the MIT license. See the LICENSE file for more info.
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
Swift-RLE
Run-length encoding (RLE) library for Swift.
Usage
Install (Swift Package Manager)
Author
Yusuke Hosonuma / tobi462@gmail.com
License
SwiftRLE is available under the MIT license. See the LICENSE file for more info.