MCPcopy Create free account
hub / github.com/Extra-Creativity/Modern-Cpp-Basics / InnerProd

Method InnerProd

15-Memory Management/code/pimpl/test.cpp:11–14  ·  view source on GitHub ↗

Equiv. to private method InnerProd_

Source from the content-addressed store, hash-verified

9};
10// Equiv. to private method InnerProd_
11float SomeComplexClass::Impl::InnerProd() const noexcept
12{
13 return a * b;
14}
15
16SomeComplexClass::SomeComplexClass(int a, float b) : impl_{ new Impl{ a, b } }
17{

Callers 1

ProdMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected