pub struct SpecialStepGenerator;Expand description
Step generator for special functions
Trait Implementations§
Source§impl StepGenerator for SpecialStepGenerator
impl StepGenerator for SpecialStepGenerator
Source§fn generate_steps(&self, name: &str, args: &[Expression]) -> Vec<Step>
fn generate_steps(&self, name: &str, args: &[Expression]) -> Vec<Step>
Generate step-by-step explanation for function evaluation
Source§fn generate_latex_explanation(&self, name: &str, args: &[Expression]) -> String
fn generate_latex_explanation(&self, name: &str, args: &[Expression]) -> String
Generate LaTeX explanation (required for educational quality)
Auto Trait Implementations§
impl Freeze for SpecialStepGenerator
impl RefUnwindSafe for SpecialStepGenerator
impl Send for SpecialStepGenerator
impl Sync for SpecialStepGenerator
impl Unpin for SpecialStepGenerator
impl UnwindSafe for SpecialStepGenerator
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more