#include <cstdint>
#include <format>
Go to the source code of this file.
|
| using | Real = double |
| using | uint = unsigned int |
◆ PEDANTIC
| #define PEDANTIC |
( |
| args... | ) |
|
◆ std_08x
| #define std_08x std::hex << std::setw(8) << std::setfill('0') |
◆ WITH_LOCK
| #define WITH_LOCK |
( |
| a, |
|
|
| b ) |
Value:do { std::lock_guard _lock((a)->getLock()); b; } while(0)
◆ WITH_RLOCK
| #define WITH_RLOCK |
( |
| a, |
|
|
| b ) |
Value:do { std::shared_lock _lock((a)->getLock()); b; } while(0)
◆ WITH_WLOCK
| #define WITH_WLOCK |
( |
| a, |
|
|
| b ) |
Value:do { std::unique_lock _lock((a)->getLock()); b; } while(0)
◆ Real
◆ uint
| using uint = unsigned int |