stream

Stream Methods

toBXList(delimiter=[string])

Collect a Java stream into a BoxLang delimited list.

Each item in the stream will cast to a string and then be joined with the delimiter.

Arguments:

Argument
Type
Required
Default

delimiter

string

false

,

toBXArray()

Collect a Java stream into a BoxLang Array

toBXQuery(query=[query])

Collect a Java stream into a BoxLang Query.

Provde an empty query to populate.

Arguments:

Argument
Type
Required
Default

query

query

true

null

toBXStruct(type=[string])

Collect a Java stream into a BoxLang Struct.

Must be a stream of Map.Entry instances.

Arguments:

Argument
Type
Required
Default

type

string

false

default

Examples

Last updated

Was this helpful?