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
Expound on code style and library related conventions.
The text was updated successfully, but these errors were encountered:
CONVENTIONS
idx: current index (of a loop, workgroup, queue, etc.) - almost always a physical in-memory address
idz := index[0], first element, starting element
idz_parent: first element within the subset of a parent group - ex.: syn_idx := syn_idz_den + syn_id_den
idn := index[len]: element after final element, termination point - ex.: for(int i = 0, i < idn, i++)
idm := index[max] := index[len - 1]: final (valid) element just before idn. idn - 1 = idm. - ex.: for(int i = 0, i <= idm, i++)
id: identifier, but not a physical array index
id_parent: identifier within the subset of a parent group - ex.: syn_idx := syn_idz_den + syn_id_den
***** High Priority Comment, Temporary Code Change <<<<< Medium Priority Comment, To Do ##### Debug Message Prefix
Sorry, something went wrong.
Elaborate on fully expanded function definition style. ex:
pub fn my_function( &mut self, important_param: u8, awesome_thing: AwesomeThing, //old_thing: Vec<OldStuff>, optional_thing: Option<usize>, ) -> ReturnedThing { ... }
All lines are easily comment-out-able.
c0gent
No branches or pull requests
Expound on code style and library related conventions.
The text was updated successfully, but these errors were encountered: