You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto a = unit!double("A");
auto b = unit!double("B") / unit!double("A");
auto c = Nullable!(QVariant!double) (b);
writeln (a * b); // 1 [B]
writeln (b * a); // 1 [B]
writeln (c * a); // 1 [B]
writeln (a * c); // DimensionException, Not dimensionless
Thanks,
Jordan
The text was updated successfully, but these errors were encountered:
Hello,
Just some odd behavior when using Nullable:
Thanks,
Jordan
The text was updated successfully, but these errors were encountered: