aboutsummaryrefslogtreecommitdiffstats
path: root/core/stream/init.moon
blob: 3fff13641a2c7ec258582487fc9df05b06280060 (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 'core.stream.value'
import EventStream from require 'core.stream.event'
import IOStream from require 'core.stream.io'

{
  :ValueStream
  :EventStream
  :IOStream
}