Last

Returns the last element in a linked list

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Object

Quick Summary

Returns the last element in a linked list

Technical Exegesis...

Returns the last element in a linked list. Used with Type-based linked lists to get the last object in the list. Returns Null if the list is empty. Part of BambooBasic's built-in list manipulation features. Useful for adding elements to the end of a list or accessing the most recently added item.

Example

Example.bam
; No example implemented yet