FB_Array_List (Function Block)
A dynamic array that can grow and shrink as needed..
Extends: FB_Collection
Implements: I_Array_List, I_Iterable
Properties
_Begin
Type: T_Position
Index of the first element.
_Capacity
Size of the storage space currently allocated for the array list.
_End
Type: T_Position
Index of the last element.
Methods
Append
Adds an item to the end of the list.
Inputs
Name |
Type |
Description |
|---|---|---|
|
|
Value to store in list |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Clear
Empties/Clears/Deletes every item in the list.
Contains
Checks if item is contained in list.
Inputs
Name |
Type |
Description |
|---|---|---|
|
|
Item to find in list |
FB_exit
Inputs
Name |
Type |
Description |
|---|---|---|
|
|
if TRUE, the exit method is called for exiting an instance that is copied afterwards (online change). |
FB_init
Inputs
Name |
Type |
Description |
|---|---|---|
|
|
if TRUE, the retain variables are initialized (warm start / cold start) |
|
|
if TRUE, the instance afterwards gets moved into the copy code (online change) |
|
The capacity and count to initialise the array list with. |
Get
Gets item from list at specified location without removing it
Inputs
Name |
Type |
Description |
|---|---|---|
|
Location of item |
|
|
|
Variable to store returned item |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Get_As_String
Returns item as a string, if type to string conversion is supported
Inputs
Name |
Type |
Description |
|---|---|---|
|
Location of item |
|
|
|
Variable to store returned item. |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Get_Generic
Gets a value from a list in it’s generic form. Use carefully as this contains the pointer of the actual value in the collection. If you wish to use this it is recommeded you create a copy of the returned value using MEMMOVE or MEMCPY
Inputs
Name |
Type |
Description |
|---|---|---|
|
Location of item |
Outputs
Name |
Type |
Description |
|---|---|---|
|
||
|
|
Get_Type_At
Gets the type of the item at specified location.
Inputs
Name |
Type |
Description |
|---|---|---|
|
Outputs
Name |
Type |
Description |
|---|---|---|
|
||
|
|
Insert
Adds new item to list at specified location, if index = 0, item will be added at the front, if index = count, item will be added at the back
Inputs
Name |
Type |
Description |
|---|---|---|
|
Location of item |
|
|
|
Item to store in list |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Insert_Generic
Adds new item to list at specified location using the generic form. If index = 0, item will be added at the front, if index = count, item will be added at the back
Inputs
Name |
Type |
Description |
|---|---|---|
|
Location of item |
|
|
Item to store in list |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Prepend
Adds an item at the front of the list.
Inputs
Name |
Type |
Description |
|---|---|---|
|
|
Value to store in list |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Remove
Removes item from the list.
Inputs
Name |
Type |
Description |
|---|---|---|
|
|
Item to remove from in list |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Remove_At
Remove item at specified location
Inputs
Name |
Type |
Description |
|---|---|---|
|
Location of item |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Remove_Last
Removes item at the back of the list.
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Resize
Manually resize list. If list becomes smaller, item on higher locations will be deleted.
Inputs
Name |
Type |
Description |
|---|---|---|
|
New size of list. |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Reverse
Reverses the order of items in the list
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Search
Find the location of an item in list.
Inputs
Name |
Type |
Description |
|---|---|---|
|
|
Item to find in list |
Outputs
Name |
Type |
Description |
|---|---|---|
|
Location of item in list |
|
|
|
Set
Changes the item at the specified location in the list.
Inputs
Name |
Type |
Description |
|---|---|---|
|
Location of item |
|
|
|
Item to store in list |
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Set_Generic
Changes the item at the specified location in the list in it’s generic form.
Inputs
Name |
Type |
Description |
|---|---|---|
|
Location of item |
|
|
Outputs
Name |
Type |
Description |
|---|---|---|
|
|
Swap
Swaps item at index A with item at index B.
Inputs
Name |
Type |
Description |
|---|---|---|
|
Outputs
Name |
Type |
Description |
|---|---|---|
|
|