Space

Trait Space 

Source
pub trait Space<T>
where T: PartialOrd + PartialEq,
{ // Required method fn contains(&self, value: T) -> bool; }
Expand description

An interface that deals with subspaces.

Required Methods§

Source

fn contains(&self, value: T) -> bool

Checks for the existence of a value within the defined subspace.

Returns true if the value exists, false otherwise.

Implementors§