[#ByteVectorHash] = ByteVectorHash :mrdocs: Implementation of Hash named requirement for types that internally store a byte array. This may be used as the hash function in std::unordered_set or std::unordered_map over such types. Internally, this uses a random instance of SipHash‐2‐4. == Synopsis Declared in `<util/bytevectorhash.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- class ByteVectorHash final ---- == Member Functions [cols="1,4"] |=== | Name| Description | xref:ByteVectorHash/2constructor.adoc[`ByteVectorHash`] [.small]#[constructor]# | Construct the hasher, seeding it with a random SipHash‐2‐4 key. | xref:ByteVectorHash/operator_call.adoc[`operator()`] | Compute the hash of a byte vector. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#