Skip to content

Commit

Permalink
Add: Mutable string slices
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Jan 14, 2024
1 parent a24ae8a commit f6d0621
Show file tree
Hide file tree
Showing 3 changed files with 154 additions and 83 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ For C++ code:
- Explicitly mark `noexcept` or `noexcept(false)` for all library interfaces.
- Document all possible exceptions of an interface using `@throw` in Doxygen.
- In C++ code avoid C-style variadic arguments in favor of templates.
- In C++ code avoid C-style casts in favor of `static_cast`, `reinterpret_cast`, etc.
- In C++ code avoid C-style casts in favor of `static_cast`, `reinterpret_cast`, and `const_cast`, except for places where a C function is called.
- Use lower-case names for everything, except macros.

For Python code:
Expand Down
Loading

0 comments on commit f6d0621

Please sign in to comment.