MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / operator +=

Method operator +=

unittests/catch.hpp:5531–5534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5529 auto end() const -> iterator { return { *this, iterator::EndTag() }; }
5530
5531 auto operator += ( Column const& col ) -> Columns& {
5532 m_columns.push_back( col );
5533 return *this;
5534 }
5535 auto operator + ( Column const& col ) -> Columns {
5536 Columns combined = *this;
5537 combined += col;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected