Results 14 comments of Bjorn

Oh I see the VMA_ALLOCATION_CREATE_MAPPED_BIT is best with `staging.info.pMappedData` as per @scgehin

![image](https://github.com/zigtools/zls/assets/249641/3bf66e65-6e22-45e1-b8c5-37b265430610) I would expect `entity` here to appear before an import statement for a file I'm not currently using. I'm not sure if this is what is being discussed in...

Yes `entities` is a file struct. and the argument to flecs `entity_t` is coerced from `u64` in zig. You are correct that I should remove unused imports, but I often...

As a reference point, flowtype uses `-` and `+` [to indicate covariance and contravariance](https://flowtype.org/docs/classes.html) ``` class ReadOnlyMap { store: { +[k:K]: V }; constructor(store) { this.store = store; } get(k:...