pub struct ConTinuousFunction {
pub is_uniformly_continuous: bool,
}Expand description
A constructive continuous function (on the Baire space or unit interval).
Fields§
§is_uniformly_continuous: boolWhether the function is (provably) uniformly continuous.
Implementations§
Source§impl ConTinuousFunction
impl ConTinuousFunction
Sourcepub fn by_fan_theorem(&self) -> bool
pub fn by_fan_theorem(&self) -> bool
The Fan Theorem implies that every function on the Cantor space [2^ω] is uniformly continuous.
Sourcepub fn kleene_brouwer(&self) -> &'static str
pub fn kleene_brouwer(&self) -> &'static str
The Kleene–Brouwer ordering on well-founded trees is used to construct continuous functions from spreads.
Auto Trait Implementations§
impl Freeze for ConTinuousFunction
impl RefUnwindSafe for ConTinuousFunction
impl Send for ConTinuousFunction
impl Sync for ConTinuousFunction
impl Unpin for ConTinuousFunction
impl UnsafeUnpin for ConTinuousFunction
impl UnwindSafe for ConTinuousFunction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more