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
0 [+8] UInt:8[8] identification_pattern
Ideally I'd be able to:
pw::Result<emboss::FileHeaderWriter> result = MakeEmbossWriter<emboss::FileHeaderWriter>(file_header_data); if (!result.ok()) { return; } emboss::FileHeaderWriter writer = result.value(); std::array<uint8_t, 8> identification_pattern_data = {0x62, 0x74, 0x73, 0x6E, 0x6F, 0x6F, 0x70, 0x00}; writer.identification_pattern().CopyBytesFrom(identification_pattern_data);
The text was updated successfully, but these errors were encountered:
It would probably be useful to add CopyBytesFrom() to all view types, not just arrays of bytes.
CopyBytesFrom()
Sorry, something went wrong.
No branches or pull requests
Ideally I'd be able to:
The text was updated successfully, but these errors were encountered: