Skip to content

v1.8.3

Compare
Choose a tag to compare
@iboB iboB released this 07 Feb 18:26
· 82 commits to master since this release
v1.8.3
b5785a0
  • New library: data_mutex. A template pair of an object and a mutex used to synchronize access to it. It makes it hard to cause bugs by forgetting to lock a mutex associated with an object.
  • static_vector: added resize with an initializer
  • pod_vector: use some algorithms from <alorithm> which improves code generation with MSVC
  • atomic: improvements to the interface of atomic_relaxed_counter
  • qalgorithm new algorithms:
    • qall_of wraps std::all_of
    • qany_of wraps std::any_of,
    • qnone_of wraps std::none_of
    • New type identity: and identity function similar to std::identity from C++23