Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
Binary Generators

See here for more information about Binary Generators.

Expression

Attribute

Description

byte_

8 bits native endian

Generate an 8 bit binary

word

16 bits native endian

Generate a 16 bit binary in native endian representation

big_word

16 bits big endian

Generate a 16 bit binary in big endian representation

little_word

16 bits little endian

Generate a 16 bit binary in little endian representation

dword

32 bits native endian

Generate a 32 bit binary in native endian representation

big_dword

32 bits big endian

Generate a 32 bit binary in big endian representation

little_dword

32 bits little endian

Generate a 32 bit binary in little endian representation

qword

64 bits native endian

Generate a 64 bit binary in native endian representation

big_qword

64 bits big endian

Generate a 64 bit binary in big endian representation

little_qword

64 bits little endian

Generate a 64 bit binary in little endian representation

pad(num)

Unused

Generate additional null bytes allowing to align generated output with memory addresses divisible by num.


PrevUpHomeNext