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

Method operator--

include/hx/FieldRef.h:182–187  ·  view source on GitHub ↗

post-decrement

Source from the content-addressed store, hash-verified

180 }
181 // post-decrement
182 inline double operator--(int)
183 {
184 double d = mObject->__GetItem(mIndex)->__ToDouble();
185 mObject->__SetItem(mIndex,d-1);
186 return d;
187 }
188 // pre-decrement
189 inline double operator--()
190 {

Callers

nothing calls this directly

Calls 3

__ToDoubleMethod · 0.45
__GetItemMethod · 0.45
__SetItemMethod · 0.45

Tested by

no test coverage detected