aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/concurrency/actor.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/control/concurrency/actor.lux')
-rw-r--r--stdlib/source/library/lux/control/concurrency/actor.lux28
1 files changed, 14 insertions, 14 deletions
diff --git a/stdlib/source/library/lux/control/concurrency/actor.lux b/stdlib/source/library/lux/control/concurrency/actor.lux
index 18b114cd1..f9ed552bb 100644
--- a/stdlib/source/library/lux/control/concurrency/actor.lux
+++ b/stdlib/source/library/lux/control/concurrency/actor.lux
@@ -3,37 +3,37 @@
[lux "*"
["[0]" debug]
[abstract
- [monad {"+" do}]]
+ [monad (.only do)]]
[control
["[0]" pipe]
["[0]" function]
- ["[0]" try {"+" Try}]
- ["[0]" exception {"+" exception:}]
- ["[0]" io {"+" IO io}]
+ ["[0]" try (.only Try)]
+ ["[0]" exception (.only exception:)]
+ ["[0]" io (.only IO io)]
["<>" parser ("[1]#[0]" monad)
- ["<[0]>" code {"+" Parser}]]]
+ ["<[0]>" code (.only Parser)]]]
[data
["[0]" bit]
["[0]" product]
[text
- ["%" format {"+" format}]]
+ ["%" format (.only format)]]
[collection
["[0]" list ("[1]#[0]" monoid monad)]]]
- ["[0]" macro {"+" with_symbols}
+ ["[0]" macro (.only with_symbols)
["[0]" code]
- [syntax {"+" syntax:}
+ [syntax (.only syntax:)
["|[0]|" input]
["|[0]|" export]]]
[math
[number
["n" nat]]]
- ["[0]" meta {"+" monad}]
- [type {"+" sharing}
- ["[0]" primitive {"+" primitive: representation abstraction}]]]]
+ ["[0]" meta (.only monad)]
+ [type (.only sharing)
+ ["[0]" primitive (.only primitive: representation abstraction)]]]]
[//
- ["[0]" atom {"+" Atom atom}]
- ["[0]" async {"+" Async Resolver} ("[1]#[0]" monad)]
- ["[0]" frp {"+" Channel Channel'}]])
+ ["[0]" atom (.only Atom atom)]
+ ["[0]" async (.only Async Resolver) ("[1]#[0]" monad)]
+ ["[0]" frp (.only Channel Channel')]])
(exception: .public poisoned)
(exception: .public dead)