List

Index

All List functions

Name Function header Example Result Description Errorhandling
newList func() []Data [[ $v := newList ]] $v contains a new empty List of Data Objects
addDataToList func(list []Data, data Data) []Data [[ $v := addDataToList $list $data ]] $v contains the List $list with $data Added as new entry to it
hasList func(result Result) bool [[ $v := hasList $result ]] $v is true if $result contains a List Object with entries

addDataToList

// TODO

func(list []Data, data Data) []Data

The addDataToList function …

Example with addDataToList

[[ $v := addDataToList ... ]]

$v contains …

hasList

// TODO

func(result Result) bool

The hasList function …

Example with hasList

[[ $v := hasList ... ]]

$v contains …

newList

// TODO

func() []Data

The newList function …

Example with newList

[[ $v := newList ... ]]

$v contains …