MCPcopy Create free account
hub / github.com/Apress/design-patterns-in-modern-cpp / operator =

Method operator =

Structural/Proxy/proxy.cpp:174–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

172 return value;
173 }
174 T operator =(T newValue)
175 {
176 return value = newValue;
177 }
178};
179
180// ===========================================

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected