Octavian Dima

Results 16 comments of Octavian Dima

DynArray is a contiguously memory, but this one has buckets / nodes. So I am a bit confused. If I am right the following: ```cpp auto rttiSystem = RED4ext::CRTTISystem::Get(); for...

How will kangaru 5 handle service instantiation? Currently, when `emplace` or `service` is called, the service instance is created immediately. While `kgr::lazy` exists, it unfortunately lacks support for custom parameters...

It sounds like a good idea. Do you have any examples related to Kangaru 5 for that? > I honestly have no idea how to solve that, and I never...

In addition to the specific you are mentioning, doing lazy initialization of the service by default (or a having a building block doing this) would be a nice addition, which...

Hello, Yes it is possible you need to write an enum with all your possible values, e.g.: ``` csharp enum PossibleTypes { Type_Int, Type_Double, Type_Bool // etc.. } ``` after...