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

Method operator--

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

Source from the content-addressed store, hash-verified

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; }
175
176#if (HXCPP_API_LEVEL>=500)

Callers

nothing calls this directly

Calls 1

setFunction · 0.85

Tested by

no test coverage detected