aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/concurrency.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/control/concurrency.lux28
1 files changed, 28 insertions, 0 deletions
diff --git a/stdlib/source/documentation/lux/control/concurrency.lux b/stdlib/source/documentation/lux/control/concurrency.lux
new file mode 100644
index 000000000..f9b751494
--- /dev/null
+++ b/stdlib/source/documentation/lux/control/concurrency.lux
@@ -0,0 +1,28 @@
+(.module:
+ [library
+ [lux #*
+ ["$" documentation (#+ documentation:)]
+ [data
+ [text (#+ \n)
+ ["%" format (#+ format)]]
+ [collection
+ ["." list]]]]]
+ ["." / #_
+ ["#." actor]
+ ["#." async]
+ ["#." atom]
+ ["#." frp]
+ ["#." semaphore]
+ ["#." stm]
+ ["#." thread]])
+
+(.def: .public documentation
+ (.List $.Module)
+ (list.joined
+ (list /actor.documentation
+ /async.documentation
+ /atom.documentation
+ /frp.documentation
+ /semaphore.documentation
+ /stm.documentation
+ /thread.documentation)))