blob: ad35eba37c0e86984e87a40ad3dd5fbf88276936 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
(.require
[library
[lux (.except if loop)
["$" documentation]
[data
[text (.only \n)
["%" \\format (.only format)]]]
[macro
["[0]" template]]]]
[\\library
["[0]" /]])
(.def .public documentation
(.List $.Module)
($.module /._
""
[($.default /.channel_is_already_closed)
($.default /.functor)
($.default /.apply)
($.default /.monad)
($.default /.subscribe!)
($.default /.mixes)
($.default /.poll)
($.default /.periodic)
($.default /.iterations)
($.default /.distinct)
($.default /.list)
($.documentation (/.Channel it)
"An asynchronous channel to distribute values.")
($.documentation (/.Sink it)
"The tail-end of a channel, which can be written-to to fee the channel.")
($.documentation /.channel
"Creates a brand-new channel and hands it over, along with the sink to write to it."
[(channel _)])
($.documentation (/.Subscriber it)
"A function that can receive every value fed into a channel.")
($.documentation /.only
(format "Produces a new channel based on the old one, only with values"
\n "that pass the test.")
[(only pass? channel)])
($.documentation /.of_async
"A one-element channel containing the output from an async."
[(of_async async)])
($.documentation /.mix
"Asynchronous mix over channels."
[(mix f init channel)])
($.documentation /.sequential
"Transforms the given list into a channel with the same elements."
[(sequential milli_seconds values)])]
[]))
|