pod_reflection icon indicating copy to clipboard operation
pod_reflection copied to clipboard

Simple C++ one-header stl based library implementing reflection for POD data types

Results 4 pod_reflection issues
Sort by recently updated
recently updated
newest added

- return type? (consider same as `std::mem_fn`) - API function name

This should be supported: ``` eld::for_each(pod, [](auto &elem, size_t indx){}); eld::for_each(pod, [](auto &elem, std::integral_constant){}); eld::for_each(pod, [](auto &elem, const auto& indx){}); // index is of type std::integral_constant ```

Each test must generate structs with fundamental and with user-defined aggregate-constructible elements. Functions to test: - [ ] `pod_size`. - [ ] `pod_element_t` - [ ] `for_each` Test `.cpp` files...