MCPcopy Create free account
hub / github.com/apache/trafficserver / TsLuaConfigSVHash

Function TsLuaConfigSVHash

include/tscore/EnumDescriptor.h:30–36  ·  view source on GitHub ↗

Hash functor for @c string_view

Source from the content-addressed store, hash-verified

28
29/// Hash functor for @c string_view
30inline size_t
31TsLuaConfigSVHash(std::string_view const &sv)
32{
33 ATSHash64FNV1a h;
34 h.update(sv.data(), sv.size());
35 return h.get();
36}
37
38class TsEnumDescriptor
39{

Callers

nothing calls this directly

Calls 4

updateMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected