Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 656 Bytes

README.markdown

File metadata and controls

17 lines (11 loc) · 656 Bytes

This is a demonstration of how to implement dependently-typed functions in Scala.

This tutorial is the best place to get started.

For more details, refer to the code:

Nat.scala demonstrates how to define singleton types of natural numbers in Scala.

GADT.scala shows how to use subtyping to model inductive data types (like Haskell's generic algebraic data types, a.k.a GADT).

Vec.scala demonstrates how to use singleton types of natural numbers to encode a vector whose length information is in its type.

RBT.scala shows how to implement a dependently-typed red-black tree.