MCPcopy Create free account
hub / github.com/OpenArkStudio/ARK / SetBool

Method SetBool

src/plugin/kernel/src/AFNodeManager.cpp:360–366  ·  view source on GitHub ↗

set data

Source from the content-addressed store, hash-verified

358
359// set data
360bool AFNodeManager::SetBool(const std::string& name, bool value)
361{
362 auto index = GetIndex(name);
363 ARK_ASSERT_RET_VAL(index > 0, false);
364
365 return SetBool(index, value);
366}
367
368bool AFNodeManager::SetInt32(const std::string& name, const int32_t value)
369{

Callers 1

InitDataMethod · 0.45

Calls 2

GetTypeMethod · 0.45
GetBoolMethod · 0.45

Tested by

no test coverage detected