Skip to main content

operator<=

bool operator<=(const UnitAlgebra& v) const;

Compare if this object is less than or equal to the argument v.

Parameters

  • v (UnitAlgebra) Object to compare to
  • returns (bool) Whether this object is less than the argument.

Example

SST::UnitAlgebra* num0 = new UnitAlgebra("1bps");
SST::UnitAlgebra* num1 = new UnitAlgebra("2b/s");

sst_assert(num0 <= num1, CALL_INFO, -1, "Error: num0 is definitely <= num1!!");
#include <sst/core/unitalgebra.h>