MCPcopy Create free account
hub / github.com/actor-framework/actor-framework / header

Method header

libcaf_net/caf/net/http/header.cpp:45–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43}
44
45header::header(const header& other) {
46 if (!other.raw_.empty()) {
47 raw_.assign(other.raw_.begin(), other.raw_.end());
48 reassign_fields(other);
49 }
50}
51
52header& header::operator=(const header& other) {
53 if (!other.raw_.empty()) {

Callers 4

caf_mainFunction · 0.45
liftMethod · 0.45
do_respond_implMethod · 0.45
operator()Method · 0.45

Calls 4

emptyMethod · 0.45
assignMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected