MCPcopy Create free account
hub / github.com/TactilityProject/Tactility / putBool

Method putBool

TactilityCore/Source/Bundle.cpp:81–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81void Bundle::putBool(const std::string& key, bool value) {
82 this->entries[key] = {
83 .type = Type::Bool,
84 .value_bool = value,
85 .value_string = ""
86 };
87}
88
89void Bundle::putInt32(const std::string& key, int32_t value) {
90 this->entries[key] = {

Callers 3

BundleTest.cppFile · 0.45
tt_preferences_put_boolFunction · 0.45
tt_bundle_put_boolFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected