TODO 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. EXAMPLES
  2. * filter on runtime values/variables (not only types)
  3. * support to polymorphic types (see #859)
  4. DOC:
  5. * custom storage/view
  6. * update entity doc when the storage based model is in place
  7. * in-place O(1) release/destroy for non-orphaned entities, out-of-sync model
  8. * view: single vs multi type views are no longer a thing actually
  9. * bump entities, reserved bits on identifiers
  10. TODO:
  11. * review all NOLINT
  12. * bring nested groups back in place (see bd34e7f)
  13. * work stealing job system (see #100) + mt scheduler based on const awareness for types
  14. * view: reduce inst due to/improve perf with index-based approach in dispatch_get/pick_and_each/each (single type too, define storage ::at and ::at_as_tuple)
  15. * view: update natvis as needed after the last rework, merge pools/filter in the same array, drop check (?) and turn view into a position
  16. * view: type-only view_iterator (dyn get/excl sizes), type-only basic_common_view (dyn get/excl sizes with pointer to array from derived)
  17. * combine version-mask-vs-version-bits tricks with reserved bits to allow things like enabling/disabling
  18. * self contained entity traits to avoid explicit specializations (ie enum constants)
  19. * auto type info data from types if present
  20. * test: push sharing types further
  21. * storage entity: fast range-push from above
  22. * table: pop back to support swap and pop, single column access, empty type optimization
  23. * review cmake warning about FetchContent_Populate (need .28 and EXCLUDE_FROM_ALL for FetchContent)
  24. * suppress -Wself-move on CI with g++13
  25. * view specializations for multi, single and filtered elements
  26. * don't pass reactive storage by default to callback
  27. * runtime types support for meta for types that aren't backed by C++ types
  28. * built-in no-pagination storage - no_pagination page size as limits::max
  29. * any cdynamic to support const ownership construction
  30. * allow passing arguments to meta setter/getter (we can fallback on meta invoke probably)
  31. * FetchContent_Populate -> FetchContent_MakeAvailable warnings
  32. * doc: IMPLICIT_DIR_DOCS for dir docs or \dir
  33. * meta non-const allow_cast overloads: (const int &) to (int &) is not allowed, but (const int &) to (double &) is allowed (support only for convertibles)
  34. * review build process for testbed (i.e. tests first due to SDL)
  35. * use any for meta_custom_node
  36. * support names directly on meta nodes
  37. * fwd meta_ctx (and update testbed)