Insert

Inserts an object into a linked list at a specific position

Keywords

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Inserts an object into a linked list at a specific position

Technical Exegesis...

Inserts an object into a linked list at a specific position. Syntax is Insert newObject Before/After existingObject. Adds an object to a Type-based linked list either before or after another object. Use with Before to insert earlier in the list, or After to insert later. Essential for managing ordered collections of objects.

Example

Example.bam
; No example implemented yet