//! Observation and action space definitions.
//!
//! Spaces define the valid structure for observations and actions in an
//! environment. They support sampling random elements and membership testing.
pub use BoundedSpace;
pub use Discrete;
use crateRng;
/// A space that defines the valid range for observations or actions.