aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/concurrency/actor.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-04 12:49:52 -0400
committerEduardo Julian2021-09-04 12:49:52 -0400
commitfc8bebd3b3c5f050ea92e72eecbd9f6df09f28db (patch)
tree24858adac0e67228620b7e9166e3b7335be9fd5a /stdlib/source/library/lux/control/concurrency/actor.lux
parent891b1cfc82322f8017f0a4f6b707d6fe52024545 (diff)
De-taggification | part 2
Diffstat (limited to 'stdlib/source/library/lux/control/concurrency/actor.lux')
-rw-r--r--stdlib/source/library/lux/control/concurrency/actor.lux30
1 files changed, 15 insertions, 15 deletions
diff --git a/stdlib/source/library/lux/control/concurrency/actor.lux b/stdlib/source/library/lux/control/concurrency/actor.lux
index 7353bad84..569a20bd2 100644
--- a/stdlib/source/library/lux/control/concurrency/actor.lux
+++ b/stdlib/source/library/lux/control/concurrency/actor.lux
@@ -1,40 +1,40 @@
(.module:
[library
- [lux #*
+ [lux "*"
["." debug]
[abstract
monad]
[control
- [pipe (#+ case>)]
+ [pipe {"+" [case>]}]
["." function]
- ["." try (#+ Try)]
- ["." exception (#+ exception:)]
- ["." io (#+ IO io)]
+ ["." try {"+" [Try]}]
+ ["." exception {"+" [exception:]}]
+ ["." io {"+" [IO io]}]
["<>" parser ("#\." monad)
- ["<.>" code (#+ Parser)]]]
+ ["<.>" code {"+" [Parser]}]]]
[data
["." bit]
["." product]
[text
- ["%" format (#+ format)]]
+ ["%" format {"+" [format]}]]
[collection
["." list ("#\." monoid monad)]]]
- ["." macro (#+ with_identifiers)
+ ["." macro {"+" [with_identifiers]}
["." code]
- [syntax (#+ syntax:)
+ [syntax {"+" [syntax:]}
["|.|" input]
["|.|" annotations]]]
[math
[number
["n" nat]]]
- ["." meta (#+ monad)
+ ["." meta {"+" [monad]}
["." annotation]]
- [type (#+ :sharing)
- ["." abstract (#+ abstract: :representation :abstraction)]]]]
+ [type {"+" [:sharing]}
+ ["." abstract {"+" [abstract: :representation :abstraction]}]]]]
[//
- ["." atom (#+ Atom atom)]
- ["." async (#+ Async Resolver) ("#\." monad)]
- ["." frp (#+ Channel)]])
+ ["." atom {"+" [Atom atom]}]
+ ["." async {"+" [Async Resolver]} ("#\." monad)]
+ ["." frp {"+" [Channel]}]])
(exception: .public poisoned)
(exception: .public dead)