-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxwp-helper-fns-arr.php
153 lines (140 loc) · 4.69 KB
/
xwp-helper-fns-arr.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
/**
* Array helper functions definition file.
*
* @package eXtended WordPress
* @subpackage Helper\Functions
*/
use XWP\Helper\Functions as f;
if ( ! function_exists( 'xwp_arr_mergemap' ) ) :
/**
* Applies the callback to the elements of the given array and merges the results into a single array.
*
* @template T
* @template R
* @template RKey of array-key
* @template RArr of array<RKey,R>
*
* @param callable(T): RArr $cbfn Callback function to run for each element in the array.
* @param array<T> $arr The input array.
* @return RArr
*/
function xwp_arr_mergemap( callable $cbfn, array $arr ): array {
return f\Array_Extra::mergemap( $cbfn, $arr );
}
endif;
if ( ! function_exists( 'xwp_array_flatmap' ) ) :
/**
* Flattens and maps an array.
*
* @template T
* @template R
*
* @param callable(T): R|array<R> $callback Function to apply to each element.
* @param array<T> $input_array Array to flatten and map.
*
* @return array<int,R>
*/
function xwp_array_flatmap( callable $callback, array $input_array ) {
return f\Array_Extra::flatmap( $callback, $input_array );
}
endif;
if ( ! function_exists( 'wp_array_flatmap' ) ) :
/**
* Flattens and maps an array.
*
* @template T The type of the elements in the input array.
* @template R The type of the elements in the returned array.
*
* @param array<array-key, T>|callable(T): R $callback Function to apply to each element.
* @param array<array-key, T>|callable(T): R $input_array Array to flatten and map.
*
* @return array<array-key, R>
*/
function wp_array_flatmap( callable|array $callback, array|callable $input_array ) {
return is_callable( $callback )
? xwp_array_flatmap( $callback, $input_array )
: xwp_array_flatmap( $input_array, $callback );
}
endif;
if ( ! function_exists( 'wp_array_diff_assoc' ) ) :
/**
* Extracts a slice of array not including the specified keys.
*
* @template TArr of array
* @template TKey of key-of<TArr>
*
* @param TArr $arr Input array.
* @param array<int,TKey> $keys Keys to remove.
* @return TArr
*/
function wp_array_diff_assoc( array $arr, array $keys ) {
return xwp_array_diff_assoc( $arr, ...$keys );
}
endif;
if ( ! function_exists( 'xwp_array_diff_assoc' ) ) :
/**
* Extracts a slice of array not including the specified keys.
*
* @template TArr of array
* @template TKey of key-of<TArr>
*
* @param TArr $arr Input array.
* @param TKey|array<int,TKey> ...$keys Keys to remove.
* @return TArr
*/
function xwp_array_diff_assoc( array $arr, array|string ...$keys ) {
/**
* Validate the keys.
*
* @var array<int,TKey> $keys
*/
$keys = is_array( current( $keys ) ) ? current( $keys ) : $keys;
return $keys ? f\Array_Extra::diff_assoc( $arr, $keys ) : $arr;
}
endif;
if ( ! function_exists( 'wp_array_rekey' ) ) :
/**
* Rekey an array of arrays by a specific key.
*
* @param array<string, array<string, mixed>> $arr The input array.
* @param string $key The key to rekey by.
* @return array<string, array<string, mixed>> The rekeyed array.
*/
function wp_array_rekey( array $arr, string $key ): array {
return f\Array_Extra::rekey( $arr, $key );
}
endif;
if ( ! function_exists( 'xwp_array_slice_assoc' ) ) :
/**
* Extracts a slice of an array.
*
* @template TArr of array
* @template TKey of key-of<TArr>
*
* @param TArr $arr Input array.
* @param TKey|array<int,TKey> ...$keys Keys to extract.
* @return TArr
*/
function xwp_array_slice_assoc( array $arr, string|array ...$keys ) {
/**
* Validate the keys.
*
* @var array<int,TKey> $keys
*/
$keys = is_array( current( $keys ) ) ? current( $keys ) : $keys;
return f\Array_Extra::slice_assoc( $arr, $keys );
}
endif;
if ( ! function_exists( 'xwp_str_to_arr' ) ) :
/**
* Convert a string to an array.
*
* @param null|string|array<int,string> $target The string to convert.
* @param null|string $delim Optional. The delimiter to use. Default is ','.
* @return array<int,string>
*/
function xwp_str_to_arr( string|array|null $target = null, ?string $delim = null ): array {
return f\Array_Extra::from_string( $target ?? array(), $delim ?? ',' );
}
endif;