Function Subspace :: sus :: boxed :: operator==

auto operator==(const Box<T>& lhs, const Box<T>& rhs) -> bool
requires
sus::cmp::Eq<T>

Compares the inner value of two Box objects for equality. This does not perform pointer equality on the boxes themselves.

Satisfies Eq for Box<T> if T also satisifes Eq.