17 using OStringStream = std::basic_ostringstream<char, std::char_traits<char>,
STLAllocator<char>>;
27 uint64 hash = 14695981039346656037UL;
28 for (
const char *c = inString; *c != 0; ++c)
31 hash = hash * 1099511628211UL;
37void StringReplace(
String &ioString,
const string_view &inSearch,
const string_view &inReplace);
40void StringToVector(
const string_view &inString,
Array<String> &outVector,
const string_view &inDelimiter =
",",
bool inClearVector =
true);
uint32_t uint32
Definition Core.h:312
#define JPH_NAMESPACE_END
Definition Core.h:240
uint64_t uint64
Definition Core.h:313
#define JPH_NAMESPACE_BEGIN
Definition Core.h:234
std::vector< T, STLAllocator< T > > Array
Definition STLAllocator.h:81
std::basic_string< char, std::char_traits< char >, STLAllocator< char > > String
Definition STLAllocator.h:82
STL allocator that forwards to our allocation functions.
Definition STLAllocator.h:14