Skip to content

Commit 3d86e6c

Browse files
author
Steve Thompson
committed
Now every mention of a dependency class in the README
contains a link to that class README
1 parent cd87b04 commit 3d86e6c

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ new PublicArray(array = [])
6767

6868
Helpful tidbit: These properties all contain their own `.data` property, which always matches `this.data`
6969

70-
#### filter: [PublicArrayFilter](https://github.com/writetome51/public-array-filter#publicarrayfilter)
71-
(read-only)
70+
#### filter: [PublicArrayFilter](https://github.com/writetome51/public-array-filter#publicarrayfilter) (read-only)
7271
###### Its methods narrow down the content of this.data and return the PublicArrayFilter instance:
7372
<details>
7473
<summary>view methods</summary>
@@ -85,8 +84,7 @@ filter.byType(
8584
</details>
8685

8786

88-
#### get: [PublicArrayGetter](https://github.com/writetome51/public-array-getter#publicarraygetter)
89-
(read-only)
87+
#### get: [PublicArrayGetter](https://github.com/writetome51/public-array-getter#publicarraygetter) (read-only)
9088
###### Its methods return items copied from this.data . None of them modify this.data .
9189
<details>
9290
<summary>view methods</summary>
@@ -171,7 +169,7 @@ get.byType(
171169
</details>
172170

173171

174-
#### getConverted: PublicArrayGetterConverter (read-only)
172+
#### getConverted: [PublicArrayGetterConverter](https://github.com/writetome51/public-array-getter-converter#publicarraygetterconverter) (read-only)
175173
###### Has the Array methods .map() and .reduce() , but renamed to .each() and .toOne() , respectively. None of them modify this.data .
176174
<details>
177175
<summary>view methods</summary>
@@ -188,7 +186,7 @@ getConverted.each(mappingFunction: ((item, index?, array?) => any)): any[]
188186
</details>
189187

190188

191-
#### getAndRemove: PublicArrayGetterRemover (read-only)
189+
#### getAndRemove: [PublicArrayGetterRemover](https://github.com/writetome51/public-array-getter-remover#publicarraygetterremover) (read-only)
192190
###### Its methods both remove and return items from this.data:
193191
<details>
194192
<summary>view methods</summary>
@@ -266,7 +264,7 @@ getAndRemove.byType(
266264
</details>
267265

268266

269-
#### insert: PublicArrayInserter (read-only)
267+
#### insert: [PublicArrayInserter](https://github.com/writetome51/public-array-inserter#publicarrayinserter) (read-only)
270268
###### Has methods that increase the length of this.data and return the PublicArrayInserter instance:
271269
<details>
272270
<summary>view methods</summary>
@@ -287,7 +285,7 @@ insert.middle(values: any[], offset = 0): PublicArrayInserter
287285
</details>
288286

289287

290-
#### remove: PublicArrayRemover (read-only)
288+
#### remove: [PublicArrayRemover](https://github.com/writetome51/public-array-remover#publicarrayremover) (read-only)
291289
###### Has methods that all remove items from this.data and return the PublicArrayRemover instance:
292290
<details>
293291
<summary>view methods</summary>
@@ -371,7 +369,7 @@ remove.byType(
371369
</details>
372370

373371

374-
#### replace: PublicArrayReplacer (read-only)
372+
#### replace: [PublicArrayReplacer](https://github.com/writetome51/public-array-replacer#publicarrayreplacer) (read-only)
375373
###### Its methods all replace items in this.data and return the PublicArrayReplacer instance:
376374
<details>
377375
<summary>view methods</summary>
@@ -450,7 +448,7 @@ replace.allWithOne(values: any[], newValue): PublicArrayReplacer
450448
</details>
451449

452450

453-
#### sort: PublicArraySorter (read-only)
451+
#### sort: [PublicArraySorter](https://github.com/writetome51/public-array-sorter#publicarraysorter) (read-only)
454452
###### Its methods change the order of items in this.data and return the PublicArraySorter instance:
455453
<details>
456454
<summary>view methods</summary>
@@ -602,7 +600,7 @@ if (arr.hasAdjacent([9,12,11,3])) console.log('yes'); // --> 'yes'
602600
arr.filter.byType('number');
603601
arr.sort.numbersAscending();
604602
605-
// removing and returning dirty 4-letter words:
603+
// removing and returning 4-letter words:
606604
let dirtyWords = arr.getAndRemove.byTest((item) => isString(item) && item.length === 4);
607605
608606
// inserting a new item just before the last item and returning the modified Array:

0 commit comments

Comments
 (0)