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