@@ -24,7 +24,7 @@ pip install arrayutilities
2424 * [ collapse] ( #usage.collapse )
2525 * [ dot] ( #usage.dot )
2626 * [ exists] ( #usage.exists )
27- * [ filter \_ prefixed ] ( #usage.filter_prefixed )
27+ * [ filter_prefixed ] ( #usage.filter_prefixed )
2828 * [ first] ( #usage.first )
2929 * [ flatten] ( #usage.flatten )
3030 * [ forget] ( #usage.forget )
@@ -139,7 +139,7 @@ result = Arr.add(test_list, 4, 4) # Result: [1, 2, 3, 4]
139139
140140<a id =" Arr.add_prefixed_keys_to " ></a >
141141
142- ### add \_ prefixed \_ keys \_ to
142+ ### add_prefixed_keys_to
143143
144144``` python
145145@ staticmethod
@@ -172,7 +172,7 @@ result = Arr.add_prefixed_keys_to(my_list) # Result: {0: 1, 1: 2, 2: 3, '_0': 1,
172172
173173<a id =" Arr.add_unprefixed_keys_to " ></a >
174174
175- ### add \_ unprefixed \_ keys \_ to
175+ ### add_unprefixed_keys_to
176176
177177``` python
178178@ staticmethod
@@ -288,7 +288,7 @@ Arr.exists({'a': 1, 'b': 2}, 'c') # Result: False
288288
289289<a id =" Arr.filter_prefixed " ></a >
290290
291- ### filter \_ prefixed
291+ ### filter_prefixed
292292
293293``` python
294294@ staticmethod
@@ -473,7 +473,7 @@ Arr.has({'a': 1, 'b': 2}, ['a', 'x']) # Result: False
473473
474474<a id =" Arr.insert_after_key " ></a >
475475
476- ### insert \_ after \_ key
476+ ### insert_after_key
477477
478478``` python
479479@ staticmethod
@@ -503,7 +503,7 @@ Arr.insert_after_key('b', {'a': 1, 'b': 2, 'c': 3}, 25) # Result: raises TypeErr
503503
504504<a id =" Arr.insert_before_key " ></a >
505505
506- ### insert \_ before \_ key
506+ ### insert_before_key
507507
508508``` python
509509@ staticmethod
@@ -533,7 +533,7 @@ Arr.insert_before_key('b', {'a': 1, 'b': 2, 'c': 3}, 25) # Result: raises TypeEr
533533
534534<a id =" Arr.is_dict " ></a >
535535
536- ### is \_ dict
536+ ### is_dict
537537
538538``` python
539539@ staticmethod
@@ -561,7 +561,7 @@ Arr.is_dict(1) # Result: False
561561
562562<a id =" Arr.is_list " ></a >
563563
564- ### is \_ list
564+ ### is_list
565565
566566``` python
567567@ staticmethod
@@ -648,7 +648,7 @@ Arr.last([1, 3, 5], lambda x: x % 2 == 0, default='no match') # Result: 'no matc
648648
649649<a id =" Arr.list_to_dict " ></a >
650650
651- ### list \_ to \_ dict
651+ ### list_to_dict
652652
653653``` python
654654@ staticmethod
@@ -675,7 +675,7 @@ Arr.list_to_dict('not a list') # Result: {0: 'not a list'}
675675
676676<a id =" Arr.list_to_string " ></a >
677677
678- ### list \_ to \_ string
678+ ### list_to_string
679679
680680``` python
681681@ staticmethod
@@ -704,7 +704,7 @@ Arr.list_to_string(['apple', 'banana', 'cherry'], sep=';') # Result: 'apple;bana
704704
705705<a id =" Arr.merge_recursive " ></a >
706706
707- ### merge \_ recursive
707+ ### merge_recursive
708708
709709``` python
710710@ staticmethod
@@ -903,7 +903,7 @@ Arr.random({'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5}, number=3, preserve_keys=Tru
903903
904904<a id =" Arr.recursive_ksort " ></a >
905905
906- ### recursive \_ ksort
906+ ### recursive_ksort
907907
908908``` python
909909@ staticmethod
@@ -964,7 +964,7 @@ Arr.set({}, ['a', 'b', 'c'], 1) # Result: {'a': {'b': {'c': 1}}}
964964
965965<a id =" Arr.shape_filter " ></a >
966966
967- ### shape \_ filter
967+ ### shape_filter
968968
969969``` python
970970@ staticmethod
@@ -1034,7 +1034,7 @@ Arr.shuffle(test_array, 1234) # Result: Shuffled array with a specific seed
10341034
10351035<a id =" Arr.sort_by_priority " ></a >
10361036
1037- ### sort \_ by \_ priority
1037+ ### sort_by_priority
10381038
10391039``` python
10401040@ staticmethod
@@ -1061,7 +1061,7 @@ Arr.sort_by_priority(input_array) # Result: [{'name': 'Alice', 'priority': 1}, {
10611061
10621062<a id =" Arr.sort_recursive " ></a >
10631063
1064- ### sort \_ recursive
1064+ ### sort_recursive
10651065
10661066``` python
10671067@ staticmethod
@@ -1092,7 +1092,7 @@ Arr.sort_recursive(input_array, descending=True) # Result: {'c': 3, 'a': {'d': 4
10921092
10931093<a id =" Arr.sort_recursive_desc " ></a >
10941094
1095- ### sort \_ recursive \_ desc
1095+ ### sort_recursive_desc
10961096
10971097``` python
10981098@ staticmethod
@@ -1120,7 +1120,7 @@ Arr.sort_recursive_desc(input_array) # Result: {'c': 3, 'a': {'d': 4, 'b': 2}}
11201120
11211121<a id =" Arr.stringify_keys " ></a >
11221122
1123- ### stringify \_ keys
1123+ ### stringify_keys
11241124
11251125``` python
11261126@ staticmethod
@@ -1185,7 +1185,7 @@ Arr.strpos("hello world hello", "hello", 6) # Result: 12
11851185
11861186<a id =" Arr.str_to_list " ></a >
11871187
1188- ### str \_ to \_ list
1188+ ### str_to_list
11891189
11901190``` python
11911191@ staticmethod
@@ -1281,7 +1281,7 @@ Arr.usearch(needle, haystack, callback) # Result: 'b'
12811281
12821282<a id =" Arr.visit_recursive " ></a >
12831283
1284- ### visit \_ recursive
1284+ ### visit_recursive
12851285
12861286``` python
12871287@ staticmethod
@@ -1344,7 +1344,7 @@ Arr.where(array, callback) # Result: {'b': 2, 'd': 4}
13441344
13451345<a id =" Arr.where_not_none " ></a >
13461346
1347- ### where \_ not \_ none
1347+ ### where_not_none
13481348
13491349``` python
13501350@ staticmethod
0 commit comments