Indradb

Results 16 comments of Indradb

@tynberry Singleton should be possible `with_singleton` and `singleton` are out of the question. Sander, flecs itself, is opposed against those sort of small utility functions as it adds maintenance burden...

@tynberry do you want to PR Singleton or should I add it to the backlog for myself?

@tynberry yeah RA with macro's don't work great until the macro is somewhat finished. Be sure to use the vs-code expand macro in case you're wondering what it produces

the DSL macro mostly follows the convention from here https://www.flecs.dev/flecs/md_docs_2FlecsQueryLanguage.html but with some small differences (documented)

replaced with trait usage.

This used to be &CStr, but from alpha user experience, I noticed it's not ideal and people are too unfamiliar with it. With compact string, the cost has been greatly...

all current features examples done

tldr of discord conversation, it's because &T is passed in the `order_by` function instead of just T, which changes the function signature to &&T which causes the segfault. Need to...

fixed in #d2f3b511