Russell Greene

Results 104 comments of Russell Greene

The current implementation is probably faster, due to the type converting nodes being able to to be indexed, reducing finding a type conversion from a O(n) operation to a O(logn)...

I'm still confused about your use case--you have to eventually know if it's a converter or not when isTypeConverter is called, so why not just register it?

I'm not sure what you mean... You mean not at compile time? If so, when registering models register different instances of the same model class, that has state to store...

In my code, I (used to, before I formed #117) did have those vary per instance because I had data types that were created at runtime, so had to use...

It would be nice if it were full HTML instead of text

This may be related to #81

Just create a widget that contains more than one option... ```C++ auto wid = new QWidget; auto layout = new QVBoxLayout; wid->setLayout(layout); auto textbox1 = new QLineEdit; layout->addWidget(textbox1); auto textbox2...

musl isn't just for static linking--I think the OP meant something like this https://github.com/rust-analyzer/rust-analyzer/pull/7658

@vadimcn merged this up--it works a bit differently than the hashbrown one in that it creates separate children for keys and values (even children are keys, odd are values). I...