摘要: bool IsLitterEndian() { union UTest { std::uint16_t t; std::uint8_t c; } endianTest{ 0x01 }; return (endianTest.c == 0x01); } 阅读全文
posted @ 2018-06-13 16:51 天逸笛仙 阅读(237) 评论(0) 推荐(1) 编辑
摘要: template<typename _MapType>auto get_map_key_value(const _MapType& input_map, const decltype(input_map.begin()->second)& mapped_value) -> decltype(inpu 阅读全文
posted @ 2018-06-13 16:17 天逸笛仙 阅读(12179) 评论(0) 推荐(0) 编辑