aboutsummaryrefslogtreecommitdiff
path: root/tests/ptr.ek
AgeCommit message (Collapse)Author
2024-08-18make check works againKimplul
2024-08-14allow adding traits to pointersKimplul
+ Should be enough to fairly easily use pointers in standard containers. Note that this just uses the pointer value itself, and doesn't care about the underlying type at all. So for example a sorted vector of pointers is sorted by the address, not by some comparison function that the underlying type may have defined. For that you will need a wrapper struct or something.