te icon indicating copy to clipboard operation
te copied to clipboard

C++17 Run-time polymorphism (type erasure) library

Results 11 te issues
Sort by recently updated
recently updated
newest added

``` #include #include #include namespace te = boost::te; namespace di = boost::di; struct Drawable : te::poly { using te::poly::poly; void draw(std::ostream &out) const { te::call([](auto const &self, auto &out) {...