class nape.dynamics.InteractionGroupIterator
Available on all platforms
Haxe Iterator
Class Fields
static function get(list:InteractionGroupList):InteractionGroupIterator
Create iterator for Nape list.
*
* There is no specific reason to use this over: list.iterator()
* especcialy since this requires writing the class name :)
* (This function is used internally)
*
*
list | The Nape list to create iterator for. * |
returns | An iterator over the Nape list. |
Instance Fields
Check if there are any elements remaining. * *
returns | True if there are more elements to iterator over. |
function next():InteractionGroup
Return next element in list. * *
returns | The next element in iteration. |