-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.d.ts
286 lines (269 loc) · 8.26 KB
/
mod.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/*
* @license Apache-2.0
*
* Copyright (c) 2021 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// TypeScript Version: 4.1
/// <reference types="node"/>
/// <reference types="https://cdn.jsdelivr.net/gh/stdlib-js/types@main/index.d.ts"/>
import { Readable } from 'stream';
import { Collection } from '@stdlib/types/array';
/**
* Interface defining stream options.
*/
interface Options {
/**
* Specifies whether a stream should operate in object mode (default: `false`).
*/
objectMode?: boolean;
/**
* Specifies how `Buffer` objects should be decoded to strings (default: `null`).
*/
encoding?: string | null;
/**
* Specifies the maximum number of bytes to store in an internal buffer before pausing streaming.
*/
highWaterMark?: number;
/**
* Separator used to join streamed data (default: `'\n'`).
*/
sep?: string;
/**
* Custom serialization function.
*/
serialize?: Function;
/**
* Iteration direction (default: `1`).
*/
dir?: number;
}
/**
* Interface defining a stream constructor which is both "newable" and "callable".
*/
interface Constructor {
/**
* Stream constructor for generating a readable stream from an array-like object.
*
* @param src - source array-like object
* @param options - stream options
* @param options.objectMode - specifies whether the stream should operate in object mode (default: false)
* @param options.encoding - specifies how `Buffer` objects should be decoded to strings (default: null)
* @param options.highWaterMark - specifies the maximum number of bytes to store in an internal buffer before pausing streaming
* @param options.sep - separator used to join streamed data (default: '\n')
* @param options.serialize - custom serialization function
* @param options.dir - iteration direction (default: 1)
* @throws must provide valid options
* @returns Stream instance
*
* @example
* var inspectStream = require( '@stdlib/streams-node-inspect-sink' );
* var Float64Array = require( '@stdlib/array-float64' );
* var randu = require( '@stdlib/random-base-randu' );
*
* function log( chunk ) {
* console.log( chunk.toString() );
* }
*
* var arr = new Float64Array( 10 );
* var i;
* for ( i = 0; i < arr.length; i++ ) {
* arr[ i ] = randu();
* }
*
* var ArrayStream = arrayStream;
* var stream = new ArrayStream( arr );
*
* stream.pipe( inspectStream( log ) );
*/
new( src: Collection, options?: Options ): Readable; // newable
/**
* Stream constructor for generating a readable stream from an array-like object.
*
* @param src - source array-like object
* @param options - stream options
* @param options.objectMode - specifies whether the stream should operate in object mode (default: false)
* @param options.encoding - specifies how `Buffer` objects should be decoded to strings (default: null)
* @param options.highWaterMark - specifies the maximum number of bytes to store in an internal buffer before pausing streaming
* @param options.sep - separator used to join streamed data (default: '\n')
* @param options.serialize - custom serialization function
* @param options.dir - iteration direction (default: 1)
* @throws must provide valid options
* @returns Stream instance
*
* @example
* var inspectStream = require( '@stdlib/streams-node-inspect-sink' );
* var Float64Array = require( '@stdlib/array-float64' );
* var randu = require( '@stdlib/random-base-randu' );
*
* function log( chunk ) {
* console.log( chunk.toString() );
* }
*
* var arr = new Float64Array( 10 );
* var i;
* for ( i = 0; i < arr.length; i++ ) {
* arr[ i ] = randu();
* }
*
* var stream = arrayStream( arr );
*
* stream.pipe( inspectStream( log ) );
*/
( src: Collection, options?: Options ): Readable; // callable
/**
* Returns a function for creating readable streams from array-like objects.
*
* @param options - stream options
* @param options.objectMode - specifies whether a stream should operate in object mode (default: false)
* @param options.encoding - specifies how `Buffer` objects should be decoded to `strings` (default: null)
* @param options.highWaterMark - specifies the maximum number of bytes to store in an internal buffer before pausing streaming
* @param options.sep - separator used to join streamed data (default: '\n')
* @param options.serialize - custom serialization function
* @param options.dir - iteration direction (default: 1)
* @returns stream factory
*
* @example
* var Float64Array = require( '@stdlib/array-float64' );
* var randu = require( '@stdlib/random-base-randu' );
*
* var arr = new Float64Array( 10 );
* var i;
* for ( i = 0; i < arr.length; i++ ) {
* arr[ i ] = randu();
* }
*
* var opts = {
* 'sep': ',',
* 'objectMode': false,
* 'encoding': 'utf8',
* 'highWaterMark': 64
* };
*
* var createStream = arrayStream.factory( opts );
*
* // Create 10 identically configured streams...
* var streams = [];
* for ( i = 0; i < 10; i++ ) {
* streams.push( createStream( arr ) );
* }
*/
factory( options?: Options ): ( src: Collection ) => Readable;
/**
* Returns an "objectMode" readable stream from an array-like object.
*
* @param src - source array-like object
* @param options - stream options
* @param options.encoding - specifies how `Buffer` objects should be decoded to `strings` (default: null)
* @param options.highWaterMark - specifies the maximum number of objects to store in an internal buffer before pausing streaming
* @param options.dir - iteration direction (default: 1)
* @throws must provide valid options
* @returns Stream instance
*
* @example
* var inspectStream = require( '@stdlib/streams-node-inspect-sink' );
* var Float64Array = require( '@stdlib/array-float64' );
* var randu = require( '@stdlib/random-base-randu' );
*
* function log( v ) {
* console.log( v );
* }
*
* var arr = new Float64Array( 10 );
* var i;
* for ( i = 0; i < arr.length; i++ ) {
* arr[ i ] = randu();
* }
*
* var stream = arrayStream.objectMode( arr );
*
* stream.pipe( inspectStream.objectMode( log ) );
*/
objectMode( src: Collection, options?: Options ): Readable;
}
/**
* Creates a readable stream from an array-like object.
*
* @param src - source array-like object
* @param options - stream options
* @throws must provide valid options
* @returns stream instance
*
* @example
* var inspectStream = require( '@stdlib/streams-node-inspect-sink' );
* var Float64Array = require( '@stdlib/array-float64' );
* var randu = require( '@stdlib/random-base-randu' );
*
* function log( chunk ) {
* console.log( chunk.toString() );
* }
*
* var arr = new Float64Array( 10 );
* var i;
* for ( i = 0; i < arr.length; i++ ) {
* arr[ i ] = randu();
* }
*
* var ArrayStream = arrayStream;
* var stream = new ArrayStream( arr );
*
* stream.pipe( inspectStream( log ) );
*
* @example
* var Float64Array = require( '@stdlib/array-float64' );
* var randu = require( '@stdlib/random-base-randu' );
*
* var arr = new Float64Array( 10 );
* var i;
* for ( i = 0; i < arr.length; i++ ) {
* arr[ i ] = randu();
* }
*
* var opts = {
* 'sep': ',',
* 'objectMode': false,
* 'encoding': 'utf8',
* 'highWaterMark': 64
* };
*
* var createStream = arrayStream.factory( opts );
*
* // Create 10 identically configured streams...
* var streams = [];
* for ( i = 0; i < 10; i++ ) {
* streams.push( createStream( arr ) );
* }
*
* @example
* var inspectStream = require( '@stdlib/streams-node-inspect-sink' );
* var Float64Array = require( '@stdlib/array-float64' );
* var randu = require( '@stdlib/random-base-randu' );
*
* function log( v ) {
* console.log( v );
* }
*
* var arr = new Float64Array( 10 );
* var i;
* for ( i = 0; i < arr.length; i++ ) {
* arr[ i ] = randu();
* }
*
* var stream = arrayStream.objectMode( arr );
*
* stream.pipe( inspectStream.objectMode( log ) );
*/
declare var arrayStream: Constructor;
// EXPORTS //
export = arrayStream;