KPKrystian Piękośinblog.infotraining.pl·Apr 16 · 6 min readAnnotations for C++26 HashingIn my recent post, I demonstrated how to use static reflection from C++26 to implement generic hash computation for custom types. Let's review the final implementation. The core of the solution is the10
KPKrystian Piękośinblog.infotraining.pl·Apr 7 · 10 min readHashing in C++26In my previous post, I showed a generic approach to hashing (see https://blog.infotraining.pl/how-to-hash-objects-without-repetition). That implementation required a tied() member that exposes an obje00