MCPcopy Create free account
hub / github.com/Project-OSRM/osrm-backend / String

Class String

include/util/json_container.hpp:52–58  ·  view source on GitHub ↗

* Typed string wrapper. * * Unwrap the type via its value member attribute. */

Source from the content-addressed store, hash-verified

50 * Unwrap the type via its value member attribute.
51 */
52struct String
53{
54 String() = default;
55 String(const char *value_) : value{value_} {}
56 String(std::string value_) : value{std::move(value_)} {}
57 std::string value;
58};
59
60/**
61 * Typed floating point number.

Callers 1

table_diff.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected