AngouriMath
EqualTo(AngouriMath.Entity)
Method (no overloads)
Summary
Creates an equality comparison without chaining.
Use this to directly compare two expressions, e.g., (a < b).EqualTo(c < d) creates (a < b) = (c < d).
Unlike Equalizes(AngouriMath.Entity), this will never chain with previous comparisons.
Use this to directly compare two expressions, e.g., (a < b).EqualTo(c < d) creates (a < b) = (c < d).
Unlike Equalizes(AngouriMath.Entity), this will never chain with previous comparisons.
Example
// Chained: creates "a < b and b = c"
var chained = (a < b).Equalizes(c);
// Non-chained: creates "(a < b) = (c < d)"
var direct = (a < b).EqualTo(c < d);Returns
A node
Angouri © 2019-2023 · Project's repo · Site's repo · Octicons · Transparency · 1953 pages online