Daniel Larson

Results 17 comments of Daniel Larson

Is there an argument for implementing `std::ops::Index` (and `IndexMut`) on `PackedArray` types? `get` semantics usually return an `Option` in rust, and don't panic, and `Index` would keep syntax and expectations...

I assume we'd be reading the XML files from the engine repo? I don't think any of the current dependencies are well-suited to the task of parsing XML. [roxmltree](https://crates.io/crates/roxmltree/0.1.0) seems...

I'm looking at the json serialization stuff, are we currently just skipping over docs in json for the most part? It looks like we're basically just using `DeJson` to get...

What would be the alternative to storing the larger JSON, I guess keep it locally but not publish it? Would this be a separate feature flag or just a version...

Looks like many items have a `description` field, and some ALSO have a `brief_description` field that I think would be best to ignore, at least at first. I don't think...

It works if the number is `(2**2624) - 1` so if the docs were instead changed to "greater than or equal to" that would also resolve that part of the...

I put the functions back in and they now all simply use the new default constructors.

Done, found another internal usage of the old methods in `zd3d12.zig` that I removed, so at least within itself it should no longer use them.

I ran `zig fmt` on it when CI failed, let me know if any other changes are needed.

I opened #763 a couple days ago and then ended up seeing this, and it seems like a good thing to add to this discussion. I have some questions about...