Permalink
Branch: master
Commits on Sep 29, 2017
Commits on Aug 31, 2017
Commits on Aug 28, 2017
Commits on Aug 27, 2017
Commits on Aug 26, 2017
-
Implement Inject instance for unnamed tuples. (#107)
This removes the need for `R2`
Commits on Aug 22, 2017
-
Interpret instance for unnamed data fields (#103)
Maps unnamed data fields to the positional record keys. For example: ```haskell data Foo = Foo Bool Integer Natural deriving (Generic, Interpret) ``` ... is mapped to this Dhall data type: ```haskell Record { _1 : Bool, _2 : Integer, _3 : Natural } ```
Commits on Aug 21, 2017
-
Merge pull request #102 from Gabriel439/gabriel/list
Add `Interpret`/`Inject` instances for `[]`
-
Add Inject, Interpret instances for tuples. (#100)
Uses R2 intermediate type to represent tuples in Dhall.
Commits on Aug 20, 2017
Commits on Aug 15, 2017
-
Ability to load expressions purely. (#93)
Note: This is a breaking change because this changes the type of `loadWith`
Commits on Aug 4, 2017
-
It is convenient to check equality of Expr Src X sometimes.
Commits on Jul 27, 2017
Commits on Jul 11, 2017
-
Adds trivial comments on extend, extract functions. Fixes #26.