MCPcopy Create free account
hub / github.com/fmtlib/fmt / is_locking

Function is_locking

include/fmt/base.h:2387–2389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2385}
2386
2387template <typename T = int> constexpr auto is_locking() -> bool {
2388 return locking<remove_cvref_t<T>>::value;
2389}
2390template <typename T1, typename T2, typename... Tail>
2391constexpr auto is_locking() -> bool {
2392 return locking<remove_cvref_t<T1>>::value || is_locking<T2, Tail...>();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected