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
To support more operations on patch files in the wifi module, the filesystem abstraction first needs to implement those. Required are
Some more ideas to improve this abstraction layer:
const_data
write_buffer
foreach_file_with_ext
bool
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To support more operations on patch files in the wifi module, the filesystem abstraction first needs to implement those.
Required are
Some more ideas to improve this abstraction layer:
const_data
andwrite_buffer
are somewhat redundant. Why not just have the const version?foreach_file_with_ext
could be replaced with a two step process: One lambda for the selection according to file infos and a second one for the actionbool
is sometimes used as an success indicator. That could be made explicit by giving it an extra typeThe text was updated successfully, but these errors were encountered: