Trait mdarray::IntoExpression 
source · pub trait IntoExpression {
    type Item;
    type Dim: Dim;
    type Producer: Producer<Item = Self::Item, Dim = Self::Dim>;
    // Required method
    fn into_expr(self) -> Expression<Self::Producer>;
}Expand description
Conversion trait into an expression.
Required Associated Types§
Required Methods§
sourcefn into_expr(self) -> Expression<Self::Producer>
 
fn into_expr(self) -> Expression<Self::Producer>
Creates an expression from a value.