LL_ToString

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > Obsolete > LL (Linked lists) >

LL_ToString

 

This functionality has been made obsolete by newer, better optimized Linked List available directly in core instead.

 

Description

 

Returns a string buffer containing all the data values stored in linked list items.

Data value will be separated by the given separator.

 

Syntax

 

sBuffer = LL_ToString(llRoot [, Separator])

 

Returns

 

String.

 

Parameters

 

Name

Type

Optional

Meaning

llRoot

Number

No

Linked list root handle or item handle to start from

Separator

String

No

An optional string separator. If not specified, $NUL (NULL char or CHR$(0) ) will be defaulted.

 

Remarks

 

Restrictions

 

See also

 

Examples