Changes between Version 10 and Version 11 of NewAxioms
- Timestamp:
- 06/07/12 06:13:43 (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewAxioms
v10 v11 1 1 = Pattern-matching axioms = 2 2 3 Th his page describes an extension to type families that supports overlap.3 This page describes an extension to type families that supports overlap. 4 4 5 5 * See [https://github.com/dreixel/New-axioms this Github repo] for a Latex draft of the design … … 52 52 * A `type instance` declaration can define multiple equations, not just one: 53 53 {{{ 54 type instance Eq where54 type instance Equal where 55 55 Equal a a = True 56 56 Equal a b = False … … 83 83 }}} 84 84 Here the second equation can never match. 85 86 87 88 89 85
