https://github.com/lysxia/raz.haskell
Random Access Zippers: Haskell translation of raz.ocaml (https://github.com/cuplv/raz.ocaml)
https://github.com/lysxia/raz.haskell
Last synced: 8 months ago
JSON representation
Random Access Zippers: Haskell translation of raz.ocaml (https://github.com/cuplv/raz.ocaml)
- Host: GitHub
- URL: https://github.com/lysxia/raz.haskell
- Owner: Lysxia
- License: mit
- Created: 2016-09-12T15:45:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-11T17:50:24.000Z (over 9 years ago)
- Last Synced: 2025-01-31T09:21:58.978Z (over 1 year ago)
- Language: Haskell
- Homepage:
- Size: 26.4 KB
- Stars: 4
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Random Access Zippers
=====================
*This is untested WIP open to issues and PRs.*
A data structure to represent sequences with fast random access.
`Data.Raz.Sequence` is intended to provide the same interface as
`Data.Sequence` from [`containers`](http://hackage.haskell.org/package/containers).
`Data.Raz.Core` is the actual zipper module.
It is a simple translation of the [OCaml implementation](https://github.com/cuplv/raz.ocaml)
the original paper appeared with.
- [The Random Access Zipper: Simple, Purely-Functional Sequences](https://arxiv.org/abs/1608.06009)