(since C++11) | ||
bool is_lock_free() const; | ||
bool is_lock_free() const volatile; |
Checks whether the atomic operations on all objects of this type are lock-free.
Parameters
(none).
Return value
true
if the atomic operations on the objects of this type are lock-free, false
otherwise.
Exceptions
noexcept
specification: noexcept
See also
(C++11) | checks if the atomic type's operations are lock-free (function template) |
Please login to continue.