| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected