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

Function operator+

include/hx/Operators.h:42–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40
41
42inline String operator+(const cpp::UInt64 &i,const String &s) { return String(i) + s; }
43inline String operator+(const cpp::Int64 &i,const String &s) { return String(i) + s; }
44inline String operator+(const int &i,const String &s) { return String(i) + s; }
45inline String operator+(const unsigned int &i,const String &s) { return String(i) + s; }

Callers

nothing calls this directly

Calls 2

StringClass · 0.50
toStringMethod · 0.45

Tested by

no test coverage detected