Struct parametrizer::ParametrizerFunction[][src]

pub struct ParametrizerFunction { /* fields omitted */ }
Expand description

A pair containing a function on 64-bit float numbers and a shorthand associated with it.

Implementations

impl ParametrizerFunction[src]

pub fn new(
    identifier: String,
    function: fn(_: f64) -> f64
) -> ParametrizerFunction
[src]

Function for creating a ParametrizerFunction pair for use in Parametrizer

Examples

use crate::parametrizer::ParametrizerFunction;

let pair = ParametrizerFunction::new("Sin".to_string(), f64::sin);

assert_eq!("sin(", pair.shorthand());
assert_eq!(2.0_f64.sin(), (pair.function())(2.0));

pub fn shorthand(&self) -> &String[src]

A function which returns the shorthand for the function as parsed by parametrize_string, i.e. adds a “(” to the end of the user-defined identifier.

pub fn function(&self) -> fn(_: f64) -> f64[src]

Returns the stored function

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V