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

Function EnsureIntStorage

include/cpp/VirtualArray.h:231–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229 }
230
231 inline void EnsureIntStorage()
232 {
233 switch(store)
234 {
235 case hx::arrayNull:
236 case hx::arrayInt:
237 case hx::arrayInt64:
238 case hx::arrayFloat:
239 case hx::arrayObject:
240 case hx::arrayFixed:
241 return;
242 case hx::arrayEmpty:
243 MakeIntArray();
244 break;
245 case hx::arrayBool:
246 case hx::arrayString:
247 MakeObjectArray();
248 break;
249 }
250 }
251
252 inline void EnsureInt64Storage()
253 {

Callers 2

EnsureArrayStorageMethod · 0.85
EnsureStorageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected