pub struct KReductionTable { /* private fields */ }Expand description
Maps structure names to their singleton-K reduction status.
Implementations§
Source§impl KReductionTable
impl KReductionTable
Sourcepub fn is_k_reducible(&self, name: &str) -> bool
pub fn is_k_reducible(&self, name: &str) -> bool
Query K-reducibility of a structure.
Sourcepub fn k_reducible_names(&self) -> Vec<&str>
pub fn k_reducible_names(&self) -> Vec<&str>
Return all K-reducible structure names.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KReductionTable
impl RefUnwindSafe for KReductionTable
impl Send for KReductionTable
impl Sync for KReductionTable
impl Unpin for KReductionTable
impl UnsafeUnpin for KReductionTable
impl UnwindSafe for KReductionTable
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