Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Returns the next element in a linked list
Technical Exegesis...
Returns the next element in a linked list. Used to navigate forwards through Type-based linked lists. Takes an object and returns the object that comes after it in the list. Returns Null if the given object is the last element or not in a list. Part of BambooBasic's built-in list navigation features.
Example
Local secondPlayer:TPlayer = After firstPlayer