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

Function EnsureStringStorage

include/cpp/VirtualArray.h:190–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188 }
189 }
190 inline void EnsureStringStorage()
191 {
192 switch(store)
193 {
194 case hx::arrayNull:
195 case hx::arrayObject:
196 case hx::arrayFixed:
197 case hx::arrayString:
198 return;
199 case hx::arrayEmpty:
200 MakeStringArray();
201 break;
202 case hx::arrayInt:
203 case hx::arrayInt64:
204 case hx::arrayFloat:
205 case hx::arrayBool:
206 MakeObjectArray();
207 break;
208 }
209 }
210 inline void EnsureFloatStorage()
211 {
212 switch(store)

Callers 2

EnsureArrayStorageMethod · 0.85
EnsureStorageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected