ihateintegrals 0.1.2

A computer algebra library for solving integrals.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

/**
* Wraps given string in parens
*/
#[allow(dead_code)]
pub fn in_paren(exp: &str) -> String {
    format!("<mo>(</mo>{}<mo>)</mo>", exp)
}

/**
* Wraps given string in <mrow>
*/
#[allow(dead_code)]
pub fn in_row(exp: &str) -> String {
    format!("<mrow>{}</mrow>", exp)
}