Home Manual Reference Source Test Repository

Variable

Static Public Summary
public

fromarray(_array: Array): *

Converts an array to a stream.

public

fromcallable(_callable: Callable): *

Converts a callable to a stream.

public

fromiterable(_iterable: Iterable): *

Converts an iterable to a stream.

public

fromiterator(_iterator: Iterator): *

Converts an iterator to a stream.

public

fromstring(_string: String): *

Converts a string to a stream.

public
public

toarray(stream: Stream): *

Converts a stream to an array.

public

toiterator(stream: Stream): *

Converts a stream to an iterator.

public

tostring(stream: Stream): *

Converts a stream to a string.

Static Public

public fromarray(_array: Array): * source

import {fromarray} from 'aureooms-es-parse/src/tools/from.js'

Converts an array to a stream.

public fromcallable(_callable: Callable): * source

import {fromcallable} from 'aureooms-es-parse/src/tools/from.js'

Converts a callable to a stream.

public fromiterable(_iterable: Iterable): * source

import {fromiterable} from 'aureooms-es-parse/src/tools/from.js'

Converts an iterable to a stream.

public fromiterator(_iterator: Iterator): * source

import {fromiterator} from 'aureooms-es-parse/src/tools/from.js'

Converts an iterator to a stream.

public fromstring(_string: String): * source

import {fromstring} from 'aureooms-es-parse/src/tools/from.js'

Converts a string to a stream.

Example:

fromstring( '1,3,2' )

public skipblanks: * source

import {skipblanks} from 'aureooms-es-parse/src/tools/skip.js'

public toarray(stream: Stream): * source

import {toarray} from 'aureooms-es-parse/src/tools/to.js'

Converts a stream to an array.

public toiterator(stream: Stream): * source

import {toiterator} from 'aureooms-es-parse/src/tools/to.js'

Converts a stream to an iterator.

public tostring(stream: Stream): * source

import {tostring} from 'aureooms-es-parse/src/tools/to.js'

Converts a stream to a string.