We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See if the unsafe code can be reduced or removed to help with onboarding other people to the project.
For background: Rusts borrows are nowhere near comprehensive enough to deal with the majority of data structures in Rasqal. Due to this the singular mutability rules are increadibly restrictive. Due to this custom smart pointers were built which utilize Rusts various ways to deal with unrestricted mutability (https://github.com/rust-lang/rust/blob/334e509912d82323ff0fca016a2e69dbbee559fd/library/core/src/cell.rs#L1) and raw pointers, including some custom ways we deal with pointer expansion and contraction.
All of these will still be required, but some work should be done around making them a bit less primeval, which includes:
The text was updated successfully, but these errors were encountered:
chemix-lunacy
No branches or pull requests
See if the unsafe code can be reduced or removed to help with onboarding other people to the project.
For background: Rusts borrows are nowhere near comprehensive enough to deal with the majority of data structures in Rasqal. Due to this the singular mutability rules are increadibly restrictive. Due to this custom smart pointers were built which utilize Rusts various ways to deal with unrestricted mutability (https://github.com/rust-lang/rust/blob/334e509912d82323ff0fca016a2e69dbbee559fd/library/core/src/cell.rs#L1)
and raw pointers, including some custom ways we deal with pointer expansion and contraction.
All of these will still be required, but some work should be done around making them a bit less primeval, which includes:
The text was updated successfully, but these errors were encountered: