blob: f9393b03db87c31893ce1fd0c436da7c47f5bcf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
----
-- `Stream` interface and implementations.
--
-- @see Stream
-- @see ValueStream
-- @see EventStream
-- @see IOStream
--
-- @module stream
import ValueStream from require 'alv.stream.value'
import EventStream from require 'alv.stream.event'
import IOStream from require 'alv.stream.io'
{
:ValueStream
:EventStream
:IOStream
}
|