Skip to main content

eq

Macro eq 

Source
eq!() { /* proc-macro */ }
Expand description

Build a symbolic equation using natural math syntax.

§Examples

use symplex::prelude::*;
use symplex::eq;

let x = symplex::var("x");
let equation = eq!(x^2 + x = 6);