MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / operator+

Function operator+

include/hxString.h:282–282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280 ::String &operator+=(const ::String &inRHS);
281 ::String operator+(const ::String &inRHS) const;
282 ::String operator+(const int &inRHS) const { return *this + ::String(inRHS); }
283 ::String operator+(const bool &inRHS) const { return *this + ::String(inRHS); }
284 ::String operator+(const double &inRHS) const { return *this + ::String(inRHS); }
285 ::String operator+(const float &inRHS) const { return *this + ::String(inRHS); }

Callers

nothing calls this directly

Calls 3

asStringMethod · 0.80
StringFunction · 0.70
toStringMethod · 0.45

Tested by

no test coverage detected