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

Method safeSort

src/Array.cpp:568–574  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

566
567
568void ArrayBase::safeSort(DynamicSorterFunc inSorter, bool inIsString)
569{
570 if (inIsString)
571 SafeSorter<String>::Sort((String *)mBase, length,inSorter);
572 else
573 SafeSorter<Dynamic>::Sort((Dynamic *)mBase, length,inSorter);
574}
575
576
577

Callers 1

safeSortFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected