C++ ライブラリメモ
目次
各種ライブラリ
- glog
- GoogleTest
- matplotlib-cpp:要 Python パッケージ
- fast-cpp-csv-parser:コメントのスキップも可能
Boost
- boost::combine:Python の zip()
- boost::adaptors::reversed:逆順 for ループ
UUID
- UUIDの型: boost::uuids::uuid
- uuid → string の変換
lexical_cast<string>- boost/uuid/uuid_io.hpp が必要
- UUID のランダム生成
boost::uuids::random_generator()()
- シードUUID を指定して string から変換
boost::uuids::name_generator- コンストラクタに uuid 指定
name_gen(string)のように変換
Hash
- hash_combine
- 構造体に対する unordered_map・set で活用