Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Returns the previous element in a linked list
Technical Exegesis...
Returns the previous element in a linked list. Used to navigate backwards through Type-based linked lists. Takes an object and returns the object that comes before it in the list. Returns Null if the given object is the first element or not in a list. Part of BambooBasic's built-in list navigation features.