aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Julian2017-12-28 19:54:06 -0400
committerEduardo Julian2017-12-28 19:54:06 -0400
commit52d1159dbedd7ccf158fa53578d1916032a662ce (patch)
tree58db00f2549b98ed1b82e2a29e45f62e5fe0f3c1
parenta4c4a5b8c744eae8108c02e402600a61fdc74d02 (diff)
- Added quotient types.
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/type/quotient.lux68
-rw-r--r--stdlib/test/tests.lux3
2 files changed, 70 insertions, 1 deletions
diff --git a/stdlib/source/lux/type/quotient.lux b/stdlib/source/lux/type/quotient.lux
new file mode 100644
index 000000000..205d8d579
--- /dev/null
+++ b/stdlib/source/lux/type/quotient.lux
@@ -0,0 +1,68 @@
+(.module:
+ [lux #- type]
+ (lux (control [monad #+ do]
+ ["p" parser])
+ (data ["e" error #+ Error])
+ (lang [type])
+ (type abstract)
+ [macro]
+ (macro ["s" syntax #+ syntax:]
+ [poly])))
+
+(abstract: #export (Class t c q)
+ {}
+
+ (-> t c)
+
+ (def: #export class
+ (All [t c]
+ (Ex [q]
+ (-> (-> t c) (Class t c q))))
+ (|>> @abstraction))
+
+ (def: expose
+ (All [t c q] (-> (Class t c q) (-> t c)))
+ (|>> @representation))
+ )
+
+(abstract: #export (Quotient t c q)
+ {}
+
+ {#value t
+ #label c}
+
+ (def: #export (quotient class value)
+ (All [t c q]
+ (-> (Class t c q) t
+ (Quotient t c q)))
+ (@abstraction {#value value
+ #label ((expose class) value)}))
+
+ (do-template [<name> <output> <slot>]
+ [(def: #export <name>
+ (All [t c q] (-> (Quotient t c q) <output>))
+ (|>> @representation (get@ <slot>)))]
+
+ [value t #value]
+ [label c #label]
+ )
+ )
+
+(def: (quotient-type constructor-type)
+ (-> Type (Error Type))
+ (<| (poly.run constructor-type)
+ (do p.Monad<Parser>
+ [[valueT classT quotient-ex] (<| poly.apply (p.after (poly.this ..Class))
+ ($_ p.seq poly.any poly.any poly.existential))]
+ (wrap (.type (..Quotient valueT classT (~ (#.Ex quotient-ex))))))))
+
+(syntax: #export (type [quotient s.symbol])
+ (do @
+ [constructorT (macro.find-type quotient)
+ quotientT (case (quotient-type constructorT)
+ (#e.Success quotientT)
+ (wrap quotientT)
+
+ (#e.Error error)
+ (p.fail error))]
+ (wrap (list (type.to-code quotientT)))))
diff --git a/stdlib/test/tests.lux b/stdlib/test/tests.lux
index 12ab83fc0..b5dcf571a 100644
--- a/stdlib/test/tests.lux
+++ b/stdlib/test/tests.lux
@@ -87,7 +87,8 @@
[macro]
(macro (poly [json]))
(type [unit]
- [refinement])
+ [refinement]
+ [quotient])
[world/env]
[world/console])
)