pub enum Instruction<T> {
Mutate(Operation<T>),
Yield,
}
Expand description
Control flow involving a stack.
Instructions are used to convert an iterator of Operation
s into an iterator of stack contents.
Variants§
Mutate(Operation<T>)
Mutate the stack with the given operation.
Yield
Yield the contents of the stack.
Implementations§
Source§impl<T> Instruction<T>
impl<T> Instruction<T>
Sourcepub const Pop: Instruction<T>
pub const Pop: Instruction<T>
Sourcepub const fn Push(val: T) -> Instruction<T>
pub const fn Push(val: T) -> Instruction<T>
Sourcepub fn into_operation(self) -> Option<Operation<T>>
pub fn into_operation(self) -> Option<Operation<T>>
Returns the operation, if mutating.
§Examples
use stacking_iterator::prelude::*;
assert_eq!(Instruction::Push(1).into_operation(), Some(Operation::Push(1)));
assert_eq!(<Instruction<()>>::Pop.into_operation(), Some(Operation::Pop));
assert_eq!(<Instruction<()>>::Yield.into_operation(), None);
Sourcepub fn as_operation(&self) -> Option<&Operation<T>>
pub fn as_operation(&self) -> Option<&Operation<T>>
Returns a reference to the operation, if mutating.
§Examples
use stacking_iterator::prelude::*;
assert_eq!(Instruction::Push(1).as_operation(), Some(&Operation::Push(1)));
assert_eq!(<Instruction<()>>::Pop.as_operation(), Some(&Operation::Pop));
assert_eq!(<Instruction<()>>::Yield.as_operation(), None);
Trait Implementations§
Source§impl<T: Clone> Clone for Instruction<T>
impl<T: Clone> Clone for Instruction<T>
Source§fn clone(&self) -> Instruction<T>
fn clone(&self) -> Instruction<T>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T: Debug> Debug for Instruction<T>
impl<T: Debug> Debug for Instruction<T>
Source§impl<T: Hash> Hash for Instruction<T>
impl<T: Hash> Hash for Instruction<T>
Source§impl<T: PartialEq> PartialEq for Instruction<T>
impl<T: PartialEq> PartialEq for Instruction<T>
impl<T: Copy> Copy for Instruction<T>
impl<T: Eq> Eq for Instruction<T>
impl<T> StructuralPartialEq for Instruction<T>
Auto Trait Implementations§
impl<T> Freeze for Instruction<T>where
T: Freeze,
impl<T> RefUnwindSafe for Instruction<T>where
T: RefUnwindSafe,
impl<T> Send for Instruction<T>where
T: Send,
impl<T> Sync for Instruction<T>where
T: Sync,
impl<T> Unpin for Instruction<T>where
T: Unpin,
impl<T> UnwindSafe for Instruction<T>where
T: UnwindSafe,
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