Skip to content

Commit 8336ac9

Browse files
committed
De-nest some headings
1 parent 1f31706 commit 8336ac9

File tree

1 file changed

+42
-42
lines changed

1 file changed

+42
-42
lines changed

README.md

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ from arrayutilities import Arr
7070

7171
<a id="Arr.accessible"></a>
7272

73-
#### accessible
73+
### accessible
7474

7575
```python
7676
@staticmethod
@@ -90,7 +90,7 @@ Determines if the given value is a list, dict, or UserDict.
9090

9191
<a id="Arr.add"></a>
9292

93-
#### add
93+
### add
9494

9595
```python
9696
@staticmethod
@@ -112,7 +112,7 @@ Add an element to an array if it doesn't exist.
112112

113113
<a id="Arr.add_prefixed_keys_to"></a>
114114

115-
#### add\_prefixed\_keys\_to
115+
### add\_prefixed\_keys\_to
116116

117117
```python
118118
@staticmethod
@@ -133,7 +133,7 @@ Duplicates any key not prefixed with '_' creating a prefixed duplicate one.
133133

134134
<a id="Arr.add_unprefixed_keys_to"></a>
135135

136-
#### add\_unprefixed\_keys\_to
136+
### add\_unprefixed\_keys\_to
137137

138138
```python
139139
@staticmethod
@@ -154,7 +154,7 @@ Duplicates any key prefixed with '_' creating an un-prefixed duplicate one.
154154

155155
<a id="Arr.array_visit_recursive"></a>
156156

157-
#### array\_visit\_recursive
157+
### array\_visit\_recursive
158158

159159
```python
160160
@staticmethod
@@ -178,7 +178,7 @@ Recursively visits all elements of an array applying the specified callback to e
178178

179179
<a id="Arr.collapse"></a>
180180

181-
#### collapse
181+
### collapse
182182

183183
```python
184184
@staticmethod
@@ -198,7 +198,7 @@ Collapse an array of arrays into a single array.
198198

199199
<a id="Arr.dot"></a>
200200

201-
#### dot
201+
### dot
202202

203203
```python
204204
@staticmethod
@@ -219,7 +219,7 @@ Flatten a multi-dimensional associative array with dots.
219219

220220
<a id="Arr.exists"></a>
221221

222-
#### exists
222+
### exists
223223

224224
```python
225225
@staticmethod
@@ -240,7 +240,7 @@ Determine if the given key exists in the provided array.
240240

241241
<a id="Arr.filter_prefixed"></a>
242242

243-
#### filter\_prefixed
243+
### filter\_prefixed
244244

245245
```python
246246
@staticmethod
@@ -261,7 +261,7 @@ Filters an associative array non-recursively, keeping only the values attached t
261261

262262
<a id="Arr.first"></a>
263263

264-
#### first
264+
### first
265265

266266
```python
267267
@staticmethod
@@ -283,7 +283,7 @@ Return the first element in an array passing a given truth test.
283283

284284
<a id="Arr.flatten"></a>
285285

286-
#### flatten
286+
### flatten
287287

288288
```python
289289
@staticmethod
@@ -304,7 +304,7 @@ Flatten a multi-dimensional array into a single level.
304304

305305
<a id="Arr.forget"></a>
306306

307-
#### forget
307+
### forget
308308

309309
```python
310310
@staticmethod
@@ -320,7 +320,7 @@ Remove one or many array items from a given array using "dot" notation.
320320

321321
<a id="Arr.get"></a>
322322

323-
#### get
323+
### get
324324

325325
```python
326326
@staticmethod
@@ -342,7 +342,7 @@ Find a value inside of an array or object, including one nested a few levels dee
342342

343343
<a id="Arr.has"></a>
344344

345-
#### has
345+
### has
346346

347347
```python
348348
@staticmethod
@@ -363,7 +363,7 @@ Check if an item or items exist in an array using "dot" notation.
363363

364364
<a id="Arr.insert_after_key"></a>
365365

366-
#### insert\_after\_key
366+
### insert\_after\_key
367367

368368
```python
369369
@staticmethod
@@ -385,7 +385,7 @@ Insert an array after a specified key within another array.
385385

386386
<a id="Arr.insert_before_key"></a>
387387

388-
#### insert\_before\_key
388+
### insert\_before\_key
389389

390390
```python
391391
@staticmethod
@@ -407,7 +407,7 @@ Insert an array before a specified key within another array.
407407

408408
<a id="Arr.is_dict"></a>
409409

410-
#### is\_dict
410+
### is\_dict
411411

412412
```python
413413
@staticmethod
@@ -427,7 +427,7 @@ Returns whether the array is a dict or not.
427427

428428
<a id="Arr.is_list"></a>
429429

430-
#### is\_list
430+
### is\_list
431431

432432
```python
433433
@staticmethod
@@ -447,7 +447,7 @@ Returns whether the array is a list or not.
447447

448448
<a id="Arr.join"></a>
449449

450-
#### join
450+
### join
451451

452452
```python
453453
@staticmethod
@@ -469,7 +469,7 @@ Join all items using a string. The final items can use a separate glue string.
469469

470470
<a id="Arr.last"></a>
471471

472-
#### last
472+
### last
473473

474474
```python
475475
@staticmethod
@@ -491,7 +491,7 @@ Return the last element in an array passing a given truth test.
491491

492492
<a id="Arr.list_to_array"></a>
493493

494-
#### list\_to\_array
494+
### list\_to\_array
495495

496496
```python
497497
@staticmethod
@@ -514,7 +514,7 @@ Converts a list to an array filtering out empty string elements.
514514

515515
<a id="Arr.merge_recursive"></a>
516516

517-
#### merge\_recursive
517+
### merge\_recursive
518518

519519
```python
520520
@staticmethod
@@ -535,7 +535,7 @@ Recursively merge two arrays preserving keys.
535535

536536
<a id="Arr.only"></a>
537537

538-
#### only
538+
### only
539539

540540
```python
541541
@staticmethod
@@ -556,7 +556,7 @@ Get a subset of the items from the given array.
556556

557557
<a id="Arr.prepend"></a>
558558

559-
#### prepend
559+
### prepend
560560

561561
```python
562562
@staticmethod
@@ -578,7 +578,7 @@ Push an item onto the beginning of an array.
578578

579579
<a id="Arr.pull"></a>
580580

581-
#### pull
581+
### pull
582582

583583
```python
584584
@staticmethod
@@ -600,7 +600,7 @@ Get a value from the array, and remove it.
600600

601601
<a id="Arr.query"></a>
602602

603-
#### query
603+
### query
604604

605605
```python
606606
@staticmethod
@@ -620,7 +620,7 @@ Convert the array into a query string.
620620

621621
<a id="Arr.random"></a>
622622

623-
#### random
623+
### random
624624

625625
```python
626626
@staticmethod
@@ -647,7 +647,7 @@ Get one or a specified number of random values from an array.
647647

648648
<a id="Arr.recursive_ksort"></a>
649649

650-
#### recursive\_ksort
650+
### recursive\_ksort
651651

652652
```python
653653
@staticmethod
@@ -667,7 +667,7 @@ Recursively key-sort an array.
667667

668668
<a id="Arr.set"></a>
669669

670-
#### set
670+
### set
671671

672672
```python
673673
@staticmethod
@@ -691,7 +691,7 @@ Set key/value within an array, can set a key nested inside of a multidimensional
691691

692692
<a id="Arr.shape_filter"></a>
693693

694-
#### shape\_filter
694+
### shape\_filter
695695

696696
```python
697697
@staticmethod
@@ -714,7 +714,7 @@ Shapes, filtering it, an array to the specified expected set of required keys.
714714

715715
<a id="Arr.shuffle"></a>
716716

717-
#### shuffle
717+
### shuffle
718718

719719
```python
720720
@staticmethod
@@ -735,7 +735,7 @@ Shuffle the given array and return the result.
735735

736736
<a id="Arr.sort_by_priority"></a>
737737

738-
#### sort\_by\_priority
738+
### sort\_by\_priority
739739

740740
```python
741741
@staticmethod
@@ -755,7 +755,7 @@ Sort based on Priority.
755755

756756
<a id="Arr.sort_recursive"></a>
757757

758-
#### sort\_recursive
758+
### sort\_recursive
759759

760760
```python
761761
@staticmethod
@@ -776,7 +776,7 @@ Recursively sort an array by keys and values.
776776

777777
<a id="Arr.sort_recursive_desc"></a>
778778

779-
#### sort\_recursive\_desc
779+
### sort\_recursive\_desc
780780

781781
```python
782782
@staticmethod
@@ -796,7 +796,7 @@ Recursively sort an array by keys and values in descending order.
796796

797797
<a id="Arr.stringify_keys"></a>
798798

799-
#### stringify\_keys
799+
### stringify\_keys
800800

801801
```python
802802
@staticmethod
@@ -817,7 +817,7 @@ Stringifies the numeric keys of an array.
817817

818818
<a id="Arr.strpos"></a>
819819

820-
#### strpos
820+
### strpos
821821

822822
```python
823823
@staticmethod
@@ -839,7 +839,7 @@ Behaves exactly like the native PHP's strpos(), but accepts an array of needles.
839839

840840
<a id="Arr.to_list"></a>
841841

842-
#### to\_list
842+
### to\_list
843843

844844
```python
845845
@staticmethod
@@ -860,7 +860,7 @@ Returns a list separated by the specified separator.
860860

861861
<a id="Arr.undot"></a>
862862

863-
#### undot
863+
### undot
864864

865865
```python
866866
@staticmethod
@@ -880,7 +880,7 @@ Convert a flatten "dot" notation array into an expanded array.
880880

881881
<a id="Arr.usearch"></a>
882882

883-
#### usearch
883+
### usearch
884884

885885
```python
886886
@staticmethod
@@ -903,7 +903,7 @@ Searches an array using a callback and returns the index of the first match.
903903

904904
<a id="Arr.where"></a>
905905

906-
#### where
906+
### where
907907

908908
```python
909909
@staticmethod
@@ -924,7 +924,7 @@ Filter the array using the given callback.
924924

925925
<a id="Arr.where_not_none"></a>
926926

927-
#### where\_not\_none
927+
### where\_not\_none
928928

929929
```python
930930
@staticmethod
@@ -944,7 +944,7 @@ Filter items where the value is not None.
944944

945945
<a id="Arr.wrap"></a>
946946

947-
#### wrap
947+
### wrap
948948

949949
```python
950950
@staticmethod

0 commit comments

Comments
 (0)