James Hagborg
James Hagborg
Previously, init_args was being destructured by value, causing it to be dropped before C_Initialize was called. This caused undefined behavior. I believe this fixes #49. The fact that a bug...
This PR implements #106. It also adds tests for both new and old-style object searches, and changes `find_objects` to use this new API internally. As it is, `find_next(0)` returns `Some(vec![])`,...
Currently, the only way to search for objects is through `Session::find_objects`, which returns a vector of all objects. If there may be a huge number of objects, it's desirable to...