aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control/concurrency.lux
blob: 5dc85c5cd6731999cd7a6e813f87f902bc21295c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(.using
 [library
  [lux (.except)
   ["$" documentation (.only documentation:)]
   [data
    [text (.only \n)
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list]]]]]
 ["[0]" /
  ["[1][0]" actor]
  ["[1][0]" async]
  ["[1][0]" atom]
  ["[1][0]" frp]
  ["[1][0]" semaphore]
  ["[1][0]" stm]
  ["[1][0]" thread]])

(.def .public documentation
  (.List $.Module)
  (list.together
   (list /actor.documentation
         /async.documentation
         /atom.documentation
         /frp.documentation
         /semaphore.documentation
         /stm.documentation
         /thread.documentation)))