MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / sub

Method sub

include/jwt/json/json.hpp:14402–14408  ·  view source on GitHub ↗

! @brief returns x - y @pre x.e == y.e and x.f >= y.f */

Source from the content-addressed store, hash-verified

14400 @pre x.e == y.e and x.f >= y.f
14401 */
14402 static diyfp sub(const diyfp& x, const diyfp& y) noexcept
14403 {
14404 JSON_ASSERT(x.e == y.e);
14405 JSON_ASSERT(x.f >= y.f);
14406
14407 return {x.f - y.f, x.e};
14408 }
14409
14410 /*!
14411 @brief returns x * y

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected