5 lines
No EOL
307 B
Markdown
5 lines
No EOL
307 B
Markdown
All mutating functions take a flag argument that can be used to control the behavior of the function. The flags are
|
|
defined in a corresponding enum. The flags are passed as a bitset, so multiple flags can be passed at once by using the
|
|
bitwise OR operator `|`.
|
|
|
|
The reason for this feature is ABI stability. |