Bifrost SDK
Bifrost SDK documentation
StringBoost.h
Go to the documentation of this file.
1//-
2// =============================================================================
3// Copyright 2023 Autodesk, Inc. All rights reserved.
4//
5// Use of this software is subject to the terms of the Autodesk license
6// agreement provided at the time of installation or download, or which
7// otherwise accompanies this software in either electronic or hard copy form.
8// =============================================================================
9
10//+
11
13
14#ifndef AMINO_CORE_STRING_BOOST_H
15#define AMINO_CORE_STRING_BOOST_H
16
17#include "StringStl.h"
18
19namespace Amino {
21inline std::size_t hash_value(String const& b) {
22 std::hash<String> hasher;
23 return hasher(b);
24}
25} // namespace Amino
26
27#endif
Definition: HostData.h:33
std::size_t hash_value(String const &b)
Boost hash specialization for Amino::String.
Definition: StringBoost.h:21
The string class used by Amino.
Definition: String.h:46