Before

Returns the previous element in a linked list

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Object

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.

Example

Example.bam
; No example implemented yet