First

Returns the first element in a linked list

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Object

Quick Summary

Returns the first element in a linked list

Technical Exegesis...

Returns the first element in a linked list. Used with Type-based linked lists to get the first object in the list. Returns Null if the list is empty. Part of BambooBasic's built-in list manipulation features. Can be used to start iterating through a list manually or to check if a list has any elements.

Example

Example.bam
; No example implemented yet