Json.empty
bool empty() const noexcept;
Checks if the container is empty for Obj
/Arr
, returns true
for other types.
Return Value
- Obj
/Arr
: true
if empty (equivalent to size() == 0
)
- All other types: true
(including Str
)
Exception Safety
No-throw guarantee
Complexity
Constant
Version
Since v3.0.0 .