AnyAny icon indicating copy to clipboard operation
AnyAny copied to clipboard

C++17 library for comfortable and efficient dynamic polymorphism

Results 3 AnyAny issues
Sort by recently updated
recently updated
newest added

For example, it might look something like this: ```c++ template struct Deref { struct Target {}; static auto do_invoke(const T&) -> Target&; template struct plugin { auto deref() const {...

I write simple `trait/interface` `Fizz`: ```c++ template struct Fizz { static auto do_invoke(const T &self) -> bool; template struct plugin { [[nodiscard]] auto is_fizz() const { return aa::invoke(*static_cast(this)); } };...

I've hit an issue where an `any_cast` is failing unexpectedly, specifically in a Clang build targetting WASM. The same program executes as expected when built for native using the exact...