pub struct PeanoInt(/* private fields */);
Expand description
A peano integer wrapping a 64-bits integer.
See the module explanation.
Implementations§
Source§impl PeanoInt
impl PeanoInt
Sourcepub fn incr(&mut self)
pub fn incr(&mut self)
Increase the integer by one.
This method guarantees that increments cannot get optimized together, e.g. that
let mut x = PeanoInt::new();
for _ in 0..1_000_000 {
x.incr();
}
Does not get optimized down to a single addition.
Since the backing integer is 64 bits long, no program could ever actually reach the point where the integer overflows.
ensures
(^self)@ == (*self)@ + 1
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PeanoInt
impl RefUnwindSafe for PeanoInt
impl Send for PeanoInt
impl Sync for PeanoInt
impl Unpin for PeanoInt
impl UnwindSafe for PeanoInt
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> MakeSized for Twhere
T: ?Sized,
impl<T> MakeSized for Twhere
T: ?Sized,
Source§fn make_sized(&self) -> Box<T>
fn make_sized(&self) -> Box<T>
logic ⚠
ensures
*result == *self