https://github.com/gmlewis/moonbit-flate
A simplified flate compression algorithm based on Go's implementation.
https://github.com/gmlewis/moonbit-flate
flate lzw lzw-algorithm moonbit
Last synced: 5 months ago
JSON representation
A simplified flate compression algorithm based on Go's implementation.
- Host: GitHub
- URL: https://github.com/gmlewis/moonbit-flate
- Owner: gmlewis
- License: apache-2.0
- Created: 2024-10-11T01:30:07.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-02-14T13:51:56.000Z (5 months ago)
- Last Synced: 2025-02-22T21:31:57.355Z (5 months ago)
- Topics: flate, lzw, lzw-algorithm, moonbit
- Language: MoonBit
- Homepage: https://mooncakes.io/docs/#/gmlewis/flate/
- Size: 348 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gmlewis/flate
[](https://github.com/gmlewis/moonbit-flate/actions/workflows/check.yml)This is a simplified flate compression algorithm based on Go's implementation:
https://cs.opensource.google/go/go/+/refs/tags/go1.23.1:src/compress/flate/deflatefast.go
which has the copyright notice:```
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
```## Status
The code has been updated to support compiler:
```bash
$ moon version --all
moon 0.1.20250212 (cd7bfb6 2025-02-12) ~/.moon/bin/moon
moonc v0.1.20250213+44ecf4dd9 ~/.moon/bin/moonc
moonrun 0.1.20250212 (cd7bfb6 2025-02-12) ~/.moon/bin/moonrun
```Use `moonup` to manage `moon` compiler versions:
https://github.com/chawyehsu/moonup