MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / operator +

Method operator +

libraries/Complex/complex.cpp:69–72  ·  view source on GitHub ↗

BASIC MATH

Source from the content-addressed store, hash-verified

67// BASIC MATH
68//
69Complex Complex::operator + (const Complex &c) const
70{
71 return Complex(re + c.re, im + c.im);
72}
73
74
75Complex Complex::operator - (const Complex &c) const

Callers

nothing calls this directly

Calls 1

ComplexClass · 0.85

Tested by

no test coverage detected