rxrust 0.7.2

A Rust implementation of Reactive Extensions.
Documentation
//! Reactive extensions library for Rust: a library for
//! [Reactive Programming](http://reactivex.io/) using Observables, to make it
//! easier to compose asynchronous or callback-based code.
//!
//! There are two core abstractions that are unique to RxRust:
//! * **[IntoShared](prelude::IntoShared):** By default, RxRust always provides
//! a single thread version to get the best performance, but a thread-safe
//! implementation also exists. The trait `IntoShared` will convert a
//! local-thread struct to thread-safe version. So we can call `to_shared`
//! method to ensure operators or subscription can shared between threads.
//! * **[Fork](prelude::Fork):** In RxRust all operators consume the
//! upstream except `Fork`, so operators always combine a single-chain and can
//! only subscribe once. We use `Fork` to fork the stream.

#![feature(external_doc, specialization, drain_filter, test, decl_macro)]
#[doc(include = "../README.md")]
#[macro_use]
extern crate lazy_static;

#[cfg(test)]
extern crate float_cmp;

pub mod observable;
pub mod observer;
pub mod ops;
pub mod scheduler;
pub mod subject;
pub mod subscribable;
pub mod subscriber;
pub mod subscription;

pub mod prelude {
  pub use crate::observable;
  pub use crate::observable::Observable;
  pub use crate::observer;
  pub use crate::ops;
  pub use crate::scheduler::*;
  pub use crate::subject;
  pub use crate::subject::{LocalSubject, SharedSubject, Subject};
  pub use crate::subscribable;
  pub use crate::subscribable::*;
  pub use crate::subscriber;
  pub use crate::subscriber::Subscriber;
  pub use crate::subscription;
  pub use crate::subscription::*;
  pub use observer::{Observer, ObserverComplete, ObserverError, ObserverNext};
  pub use ops::Fork;
}
mod util;