MCPcopy Create free account
hub / github.com/alibaba/zvec / append

Method append

src/ailego/container/vector_array.h:430–435  ·  view source on GitHub ↗

Append a vector

Source from the content-addressed store, hash-verified

428
429 //! Append a vector
430 void append(const ValueType *vec, size_t dim) {
431 if (ailego_unlikely(dim != dimension_)) {
432 throw std::length_error("Unmatched dimension");
433 }
434 buffer_.append(reinterpret_cast<const char *>(vec), (dim >> 3));
435 }
436
437 //! Append vectors
438 void append(const ValueType *vec, size_t dim, size_t cnt) {

Callers

nothing calls this directly

Calls 3

appendMethod · 0.45
dataMethod · 0.45
dimensionMethod · 0.45

Tested by

no test coverage detected