Skip to content

Commit d2f2696

Browse files
update doc
1 parent 602d643 commit d2f2696

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ The following versions of PHP are supported: `7.4`, `8.0`, `8.1`.
1717
$ composer require brenoroosevelt/array-functions
1818
```
1919

20-
## Function list
20+
## Available functions
2121
```php
2222
// Add - Set
23-
function add(array &$set, ...$elements): int;
24-
function set(array &$set, $element, $key = null): void;
23+
function add(array &$set, ...$elements): int
24+
function set(array &$set, $element, $key = null): void
2525

2626
// Count
27-
function all(iterable $items, callable $callback, bool $empty_is_valid = true, int $mode = CALLBACK_USE_VALUE): bool;
27+
function all(iterable $items, callable $callback, bool $empty_is_valid = true, int $mode = CALLBACK_USE_VALUE): bool
2828
function at_least(int $n, iterable $items, callable $callback, int $mode = CALLBACK_USE_VALUE): bool
2929
function at_most(int $n, iterable $items, callable $callback, int $mode = CALLBACK_USE_VALUE): bool
3030
function exactly(int $n, iterable $items, callable $callback, int $mode = CALLBACK_USE_VALUE): bool

0 commit comments

Comments
 (0)