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

Method operator++

include/cpp/Variant.h:171–171  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169 inline double operator%(const Dynamic &inRHS) const;
170 inline double operator-() const { return -asDouble(); }
171 inline double operator++() { return set(asDouble()+1); }
172 inline double operator++(int) {double val = asDouble(); set(val+1); return val; }
173 inline double operator--() { return set(asDouble()-1); }
174 inline double operator--(int) {double val = asDouble(); set(val-1); return val; }

Callers

nothing calls this directly

Calls 1

setFunction · 0.85

Tested by

no test coverage detected