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

Method SetUInt64

src/plugin/kernel/include/AFCDataList.hpp:678–694  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

676 }
677
678 virtual bool SetUInt64(size_t index, uint64_t value)
679 {
680 if (index >= mnDataUsed)
681 {
682 return false;
683 }
684
685 if (mpData[index].nType != ArkDataType::DT_UINT64)
686 {
687 return false;
688 }
689 else
690 {
691 mpData[index].mnU64Value = value;
692 return true;
693 }
694 }
695
696 virtual bool SetFloat(size_t index, float value)
697 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected