TerraForge3D  2.3.1
3D Terrain And Landscape Generator

◆ sub()

static diyfp nlohmann::detail::dtoa_impl::diyfp::sub ( const diyfp x,
const diyfp y 
)
inlinestaticnoexcept

returns x - y

Precondition
x.e == y.e and x.f >= y.f

Definition at line 15603 of file json.hpp.

15604 {
15605 JSON_ASSERT(x.e == y.e);
15606 JSON_ASSERT(x.f >= y.f);
15607 return {x.f - y.f, x.e};
15608 }