1
Fork 0
solar-conflux/purescript/typelevel/README.md

15 lines
847 B
Markdown
Raw Normal View History

2023-10-29 01:13:57 +02:00
# Typelevel
Experiments in the realm of typelevel Purescript computation.
## File structure
| File | Description |
| ------------------------------------ | -------------------------------------------------- |
| [Ast.purs](./src/Ast.purs) | Typelevel sum-types and a bit of typelevel parsing |
| [Num.purs](./src/Num.purs) | Typelevel naturals |
| [Vec.purs](./src/Vec.purs) | Typelevel fixed-size lists |
| [Ordering.purs](./src/Ordering.purs) | Typelevel orderings |
| [Term.purs](./src/Term.purs) | Typelevel lambda-calculus evaluation |
| [Fin.purs](./src/Fin.purs) | Bounded naturals using a GADT representation |