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

Method SetInt64

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

Source from the content-addressed store, hash-verified

640 }
641
642 virtual bool SetInt64(size_t index, int64_t value)
643 {
644 if (index >= mnDataUsed)
645 {
646 return false;
647 }
648
649 if (mpData[index].nType != ArkDataType::DT_INT64)
650 {
651 return false;
652 }
653 else
654 {
655 mpData[index].mn64Value = value;
656 return true;
657 }
658 }
659
660 virtual bool SetUInt(size_t index, uint32_t value)
661 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected