MCPcopy Create free account
hub / github.com/ChiyukiGana/Quickinput / append

Method append

source/src/tools/vector.h:56–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54 return base_vector::back();
55 }
56 void append(const QiVector& other)
57 {
58 base_vector::insert(base_vector::end(), other.begin(), other.end());
59 }
60 void append(const QiVector& other, size_t begin, size_t end)
61 {
62 base_vector::insert(base_vector::begin(), other.begin() + begin, other.begin() + end);

Callers

nothing calls this directly

Calls 2

beginMethod · 0.80
endMethod · 0.80

Tested by

no test coverage detected