https://github.com/thma/typeclasses
some Haskell type class musings. Basic idea: model an oo type hierarchy with type classes
https://github.com/thma/typeclasses
Last synced: over 1 year ago
JSON representation
some Haskell type class musings. Basic idea: model an oo type hierarchy with type classes
- Host: GitHub
- URL: https://github.com/thma/typeclasses
- Owner: thma
- License: apache-2.0
- Created: 2017-12-10T16:12:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-01T07:49:58.000Z (over 1 year ago)
- Last Synced: 2025-02-09T17:32:58.484Z (over 1 year ago)
- Language: Haskell
- Size: 9.77 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TypeClasses
This project contains some experiments to model an oo inheritance hierarchy (as in Java 8 with Interfaces and Default Methods) with Haskell Type Classes.
The code revolves around simple stack an queue implementations.
These implementations are not meant as robust libraries but rather to give a small framework to experiment with type classes.