@@ -45,22 +45,22 @@ getPublicArray(array = []): PublicArray
45
45
46
46
## Properties
47
47
48
- ### data: any[ ] (read-writable)
49
- ##### This is the array to be operated on.
48
+ #### data: any[ ] (read-writable)
49
+ ###### This is the array to be operated on.
50
50
51
- ### copy: PublicArray (read-only)
52
- ##### an independent copy of the PublicArray instance
51
+ #### copy: PublicArray (read-only)
52
+ ###### an independent copy of the PublicArray instance
53
53
54
- ### length: number (read-writable)
55
- ##### length of array
54
+ #### length: number (read-writable)
55
+ ###### length of array
56
56
57
- ### isEmpty: boolean (read-only)
58
- ##### true if this.data is empty
57
+ #### isEmpty: boolean (read-only)
58
+ ###### true if this.data is empty
59
59
60
- ### notEmpty: boolean (read-only)
60
+ #### notEmpty: boolean (read-only)
61
61
62
- ### filter: PublicArrayFilter (read-only)
63
- ##### Has methods that narrow down the content of the array and return the PublicArrayFilter instance:
62
+ #### filter: PublicArrayFilter (read-only)
63
+ ###### Has methods that narrow down the content of the array and return the PublicArrayFilter instance:
64
64
<details >
65
65
<summary >view methods</summary >
66
66
@@ -76,8 +76,9 @@ filter.byType(
76
76
</details >
77
77
78
78
79
- ### getConverted: PublicArrayGetterConverter (read-only)
80
- ##### Has the Array methods .map() and .reduce() , but renamed to .each() and .toOne() , respectively. None of them modify the array.
79
+ #### getConverted: PublicArrayGetterConverter (read-only)
80
+ ###### Has the Array methods .map() and .reduce() , but renamed to .each() and .toOne() ,
81
+ respectively. None of them modify the array.
81
82
<details >
82
83
<summary >view methods</summary >
83
84
@@ -92,8 +93,8 @@ getConverted.each(mappingFunction: ((item, index?, array?) => any)): any[]
92
93
```
93
94
</details >
94
95
95
- ### get: PublicArrayGetter (read-only)
96
- ##### Has methods that return items copied from the array. None of them modify the array.
96
+ #### get: PublicArrayGetter (read-only)
97
+ ###### Has methods that return items copied from the array. None of them modify the array.
97
98
<details >
98
99
<summary >view methods</summary >
99
100
@@ -174,8 +175,8 @@ get.byType(
174
175
</details >
175
176
176
177
177
- ### getAndRemove: PublicArrayGetterRemover (read-only)
178
- ##### Has methods that both remove and return items from the array:
178
+ #### getAndRemove: PublicArrayGetterRemover (read-only)
179
+ ###### Has methods that both remove and return items from the array:
179
180
<details >
180
181
<summary >view methods</summary >
181
182
@@ -251,8 +252,8 @@ getAndRemove.byType(
251
252
</details >
252
253
253
254
254
- ### insert: PublicArrayInserter (read-only)
255
- ##### Has methods that increase the length of the array and return the PublicArrayInserter instance:
255
+ #### insert: PublicArrayInserter (read-only)
256
+ ###### Has methods that increase the length of the array and return the PublicArrayInserter instance:
256
257
<details >
257
258
<summary >view methods</summary >
258
259
@@ -269,8 +270,8 @@ insert.middle(values: any[], offset = 0): PublicArrayInserter
269
270
</details >
270
271
271
272
272
- ### remove: PublicArrayRemover (read-only)
273
- ##### Has methods that all remove items from the array and return the PublicArrayRemover instance:
273
+ #### remove: PublicArrayRemover (read-only)
274
+ ###### Has methods that all remove items from the array and return the PublicArrayRemover instance:
274
275
<details >
275
276
<summary >view methods</summary >
276
277
@@ -353,8 +354,8 @@ remove.byType(
353
354
</details >
354
355
355
356
356
- ### replace: PublicArrayReplacer (read-only)
357
- ##### Has methods that all replace items in the array and return the PublicArrayReplacer instance:
357
+ #### replace: PublicArrayReplacer (read-only)
358
+ ###### Has methods that all replace items in the array and return the PublicArrayReplacer instance:
358
359
<details >
359
360
<summary >view methods</summary >
360
361
@@ -428,8 +429,8 @@ replace.allWithOne(values: any[], newValue): PublicArrayReplacer
428
429
</details >
429
430
430
431
431
- ### sort: PublicArraySorter (read-only)
432
- ##### Has methods that change the order of the items and return the PublicArraySorter instance:
432
+ #### sort: PublicArraySorter (read-only)
433
+ ###### Has methods that change the order of the items and return the PublicArraySorter instance:
433
434
<details >
434
435
<summary >view methods</summary >
435
436
@@ -451,7 +452,7 @@ sort.shuffle(): PublicArraySorter;
451
452
</details >
452
453
453
454
454
- ### className: string (read-only)
455
+ #### className: string (read-only)
455
456
456
457
457
458
## Methods
0 commit comments