| 687 | } |
| 688 | |
| 689 | void copy( |
| 690 | const TypePtr& type, |
| 691 | BaseVector& target, |
| 692 | vector_size_t targetIndex, |
| 693 | const BaseVector& source, |
| 694 | vector_size_t sourceIndex, |
| 695 | vector_size_t count) { |
| 696 | BOLT_DYNAMIC_TYPE_DISPATCH( |
| 697 | copyImpl, |
| 698 | type->kind(), |
| 699 | type, |
| 700 | target, |
| 701 | targetIndex, |
| 702 | source, |
| 703 | sourceIndex, |
| 704 | count); |
| 705 | } |
| 706 | |
| 707 | // copy null from source to target, return true if the value copied is null |
| 708 | bool copyNull( |