1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Functional Reactive Programming library for Rust
#![warn(missing_docs)]

pub extern crate maybe_owned;
#[cfg(feature="either")]
pub extern crate either;

mod helpers;
pub mod types;
mod stream;
#[macro_use] mod signal;
pub mod lift;

pub use stream::{Sink, Stream};
pub use signal::Signal;