MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / EnsureInt64Storage

Function EnsureInt64Storage

include/cpp/VirtualArray.h:252–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250 }
251
252 inline void EnsureInt64Storage()
253 {
254 switch(store)
255 {
256 case hx::arrayNull:
257 case hx::arrayInt64:
258 case hx::arrayFloat:
259 case hx::arrayObject:
260 case hx::arrayFixed:
261 return;
262 case hx::arrayInt:
263 case hx::arrayEmpty:
264 MakeInt64Array();
265 break;
266 case hx::arrayBool:
267 case hx::arrayString:
268 MakeObjectArray();
269 break;
270 }
271 }
272
273 inline void EnsureObjectStorage()
274 {

Callers 2

EnsureArrayStorageMethod · 0.85
EnsureStorageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected