[#BytesToBits] = BytesToBits :mrdocs: Unpack bytes into a vector of bits, eight bits per byte, least significant bit first. == Synopsis Declared in `<merkleblock.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::vector<bool> BytesToBits(std::vector<unsigned char> const& bytes); ---- == Return Value The unpacked bit sequence, eight bits per input byte. == Parameters [cols="1,4"] |=== | Name| Description | *bytes* | The packed bytes to expand. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#