Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/HaxeFoundation/hxcpp
/ removeAt
Function
removeAt
include/Array.h:755–761 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
753
}
754
755
bool removeAt( int idx )
756
{
757
if( idx < 0 ) idx += length;
758
if (idx>=length || idx<0) return false;
759
RemoveElement(idx);
760
return true;
761
}
762
763
764
int indexOf(ELEM_ inValue, Dynamic fromIndex = null())
Callers
1
__removeAt
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected