文件名称:Shiro:实验性 C++ 库
文件大小:29KB
文件格式:ZIP
更新时间:2024-07-02 15:22:25
C++
#四郎 Shiro 是 C++14 或更高版本的实验库。 ##支持的编译器 gcc4.9 叮当3.5 ##用法###元组 shiro::tuple 是一个元组实用程序,它具有像 std::tuple 这样的接口。 假设用于复杂的元编程等。它的操作的递归深度受到限制,因此它可以处理很多参数。 # include < shiro> constexpr auto ct = shiro::make_tuple( 1 , ' a ' , true , /* arguments... */ , 0 ); static_assert (shiro::get< 0>(ct) == 1, ""); static_assert (shiro::get< 1>(ct) == 'a', ""); static_assert (shiro::get< 2>(ct) == true
【文件预览】:
Shiro-master
----README.md(2KB)
----test()
--------utility.cpp(6KB)
--------tuple.cpp(12KB)
----shiro()
--------type_traits.hpp(577B)
--------tuple()
--------tuple.hpp(820B)
--------type_traits()
--------utility()
--------utility.hpp(690B)
----LICENSE_1_0.txt(1KB)