@@ -26,6 +26,7 @@ const SIGNED_INTEGER_OFFSET = 2147483648;
26
26
* Deals with data types as understood by _A Township Tale_ game servers.
27
27
*
28
28
* @see [Class: `BinaryData`](https://github.com/mdingena/att-string-transcoder/tree/main/docs/BinaryData.md)
29
+ * @since v3.0.0
29
30
*
30
31
* @example
31
32
* import { BinaryData } from 'att-string-transcoder';
@@ -59,6 +60,7 @@ export class BinaryData {
59
60
* types. You may optionally provide additional options in the second argument.
60
61
*
61
62
* @see [Class: `BinaryData`](https://github.com/mdingena/att-string-transcoder/tree/main/docs/BinaryData.md)
63
+ * @since v3.0.0
62
64
*
63
65
* @example
64
66
* import { BinaryData } from 'att-string-transcoder';
@@ -79,6 +81,8 @@ export class BinaryData {
79
81
/**
80
82
* Creates a BinaryData instance from the given boolean.
81
83
*
84
+ * @since v3.0.0
85
+ *
82
86
* @example
83
87
* import { BinaryData } from 'att-string-transcoder';
84
88
*
@@ -93,6 +97,8 @@ export class BinaryData {
93
97
/**
94
98
* Creates a BinaryData instance from the given character.
95
99
*
100
+ * @since v3.0.0
101
+ *
96
102
* @example
97
103
* import { BinaryData } from 'att-string-transcoder';
98
104
*
@@ -108,6 +114,8 @@ export class BinaryData {
108
114
/**
109
115
* Creates a BinaryData instance from the given floating point number.
110
116
*
117
+ * @since v3.0.0
118
+ *
111
119
* @example
112
120
* import { BinaryData } from 'att-string-transcoder';
113
121
*
@@ -122,6 +130,8 @@ export class BinaryData {
122
130
/**
123
131
* Creates a BinaryData instance from the given number.
124
132
*
133
+ * @since v3.0.0
134
+ *
125
135
* @example
126
136
* import { BinaryData } from 'att-string-transcoder';
127
137
*
@@ -136,6 +146,8 @@ export class BinaryData {
136
146
/**
137
147
* Creates a BinaryData instance from the given signed integer.
138
148
*
149
+ * @since v3.0.0
150
+ *
139
151
* @example
140
152
* import { BinaryData } from 'att-string-transcoder';
141
153
*
@@ -158,6 +170,8 @@ export class BinaryData {
158
170
/**
159
171
* Creates a BinaryData instance from the given unsigned integer.
160
172
*
173
+ * @since v3.0.0
174
+ *
161
175
* @example
162
176
* import { BinaryData } from 'att-string-transcoder';
163
177
*
@@ -172,6 +186,8 @@ export class BinaryData {
172
186
/**
173
187
* Creates a BinaryData instance from the given comma-separated array of unsigned integers.
174
188
*
189
+ * @since v3.0.0
190
+ *
175
191
* @example
176
192
* import { BinaryData } from 'att-string-transcoder';
177
193
*
@@ -188,6 +204,8 @@ export class BinaryData {
188
204
/**
189
205
* Creates a BinaryData instance from the given unsigned long integer.
190
206
*
207
+ * @since v3.0.0
208
+ *
191
209
* @example
192
210
* import { BinaryData } from 'att-string-transcoder';
193
211
*
@@ -203,6 +221,8 @@ export class BinaryData {
203
221
/**
204
222
* Creates a BinaryData instance from the given unsigned short integer.
205
223
*
224
+ * @since v3.0.0
225
+ *
206
226
* @example
207
227
* import { BinaryData } from 'att-string-transcoder';
208
228
*
@@ -217,6 +237,8 @@ export class BinaryData {
217
237
/**
218
238
* Confirms whether `data` is a string of binary data, i.e. a string of zeroes and ones.
219
239
*
240
+ * @since v3.0.0
241
+ *
220
242
* @example
221
243
* import { BinaryData } from 'att-string-transcoder';
222
244
*
@@ -239,6 +261,8 @@ export class BinaryData {
239
261
* This is also a type assertion function, so if the passed `string` is asserted as a
240
262
* `BinaryString`, it will be considered as such after calling this function.
241
263
*
264
+ * @since v3.0.0
265
+ *
242
266
* @example
243
267
* import { BinaryData } from 'att-string-transcoder';
244
268
*
@@ -261,6 +285,8 @@ export class BinaryData {
261
285
/**
262
286
* Converts a JavaScript floating point number into an IEEE754 integer.
263
287
*
288
+ * @since v3.0.0
289
+ *
264
290
* @example
265
291
* import { BinaryData } from 'att-string-transcoder';
266
292
*
@@ -287,6 +313,8 @@ export class BinaryData {
287
313
/**
288
314
* Returns the binary data as a `BinaryString`.
289
315
*
316
+ * @since v3.0.0
317
+ *
290
318
* @example
291
319
* import { BinaryData } from 'att-string-transcoder';
292
320
*
@@ -302,6 +330,8 @@ export class BinaryData {
302
330
/**
303
331
* Returns the boolean represenation of the binary data.
304
332
*
333
+ * @since v3.0.0
334
+ *
305
335
* @example
306
336
* import { BinaryData } from 'att-string-transcoder';
307
337
*
@@ -319,6 +349,8 @@ export class BinaryData {
319
349
/**
320
350
* Returns the character represenation of the binary data.
321
351
*
352
+ * @since v3.0.0
353
+ *
322
354
* @example
323
355
* import { BinaryData } from 'att-string-transcoder';
324
356
*
@@ -336,6 +368,8 @@ export class BinaryData {
336
368
/**
337
369
* Returns the floating point number represenation of the binary data.
338
370
*
371
+ * @since v3.0.0
372
+ *
339
373
* @example
340
374
* import { BinaryData } from 'att-string-transcoder';
341
375
*
@@ -355,6 +389,8 @@ export class BinaryData {
355
389
/**
356
390
* Returns the numeric represenation of the binary data.
357
391
*
392
+ * @since v3.0.0
393
+ *
358
394
* @example
359
395
* import { BinaryData } from 'att-string-transcoder';
360
396
*
@@ -370,6 +406,8 @@ export class BinaryData {
370
406
/**
371
407
* Returns the signed integer representation of the binary data.
372
408
*
409
+ * @since v3.0.0
410
+ *
373
411
* @example
374
412
* import { BinaryData } from 'att-string-transcoder';
375
413
*
@@ -390,6 +428,8 @@ export class BinaryData {
390
428
/**
391
429
* Returns the unsigned integer representation of the binary data.
392
430
*
431
+ * @since v3.0.0
432
+ *
393
433
* @example
394
434
* import { BinaryData } from 'att-string-transcoder';
395
435
*
@@ -407,6 +447,8 @@ export class BinaryData {
407
447
/**
408
448
* Returns the binary data as a comma-separated array of unsigned integers.
409
449
*
450
+ * @since v3.0.0
451
+ *
410
452
* @example
411
453
* import { BinaryData } from 'att-string-transcoder';
412
454
*
@@ -426,6 +468,8 @@ export class BinaryData {
426
468
/**
427
469
* Returns the unsigned long integer representation of the binary data.
428
470
*
471
+ * @since v3.0.0
472
+ *
429
473
* @example
430
474
* import { BinaryData } from 'att-string-transcoder';
431
475
*
@@ -443,6 +487,8 @@ export class BinaryData {
443
487
/**
444
488
* Returns the unsigned short integer representation of the binary data.
445
489
*
490
+ * @since v3.0.0
491
+ *
446
492
* @example
447
493
* import { BinaryData } from 'att-string-transcoder';
448
494
*
@@ -460,6 +506,8 @@ export class BinaryData {
460
506
/**
461
507
* Converts an IEEE754 integer into a JavaScript floating point number.
462
508
*
509
+ * @since v3.0.0
510
+ *
463
511
* @example
464
512
* import { BinaryData } from 'att-string-transcoder';
465
513
*
0 commit comments