After

Returns the next element in a linked list

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Object

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

Example.bam


Local secondPlayer:TPlayer = After firstPlayer