文件名称:cpp_property:零开销的C#像C ++的属性!
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-04 13:21:57
cpp properties C++
cpp_property 仅标头,零开销C#-类似C ++的属性! struct In { int x; int y; }; class Data { In m_i; public: auto i (){ return Property ( [&]() -> In { return { m_i. x * 10 , m_i. y * - 10 }; }, [&]( const auto & i){ m_i = i; } ); } }; int main (){
【文件预览】:
cpp_property-lambda_oriented
----main.cpp(663B)
----CMakeLists.txt(121B)
----.gitignore(165B)
----test.h(703B)
----README.md(1KB)
----Property.h(2KB)
----LICENSE(1KB)
----const_mutable_helper.h(679B)