├── .gitignore ├── ChangeLog.md ├── LICENSE ├── README.md ├── Setup.hs ├── hie.yaml ├── package.yaml ├── recursive-zipper.cabal ├── src └── Zipper │ ├── Recursive.hs │ └── Recursive │ └── Internal.hs ├── stack.yaml ├── stack.yaml.lock └── test └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | *~ -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- 1 | cradle: 2 | stack: 3 | 4 | -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/package.yaml -------------------------------------------------------------------------------- /recursive-zipper.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/recursive-zipper.cabal -------------------------------------------------------------------------------- /src/Zipper/Recursive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/src/Zipper/Recursive.hs -------------------------------------------------------------------------------- /src/Zipper/Recursive/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/src/Zipper/Recursive/Internal.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChrisPenner/recursive-zipper/HEAD/test/Spec.hs --------------------------------------------------------------------------------