[#ToByteVector] = ToByteVector :mrdocs: Copies the bytes of a container into a byte vector. == Synopsis Declared in `<script/script.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> std::vector<unsigned char> ToByteVector(T const& in); ---- == Return Value A vector holding the bytes of `in.` == Parameters [cols="1,4"] |=== | Name| Description | *in* | Container whose elements are copied into the result. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#