Skip to content

Commit 602d643

Browse files
update doc
1 parent d094519 commit 602d643

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +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
2021
```php
2122
// Add - Set
22-
function add(array &$set, ...$elements): int
23-
function set(array &$set, $element, $key = null): void
23+
function add(array &$set, ...$elements): int;
24+
function set(array &$set, $element, $key = null): void;
2425

2526
// Count
26-
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;
2728
function at_least(int $n, iterable $items, callable $callback, int $mode = CALLBACK_USE_VALUE): bool
2829
function at_most(int $n, iterable $items, callable $callback, int $mode = CALLBACK_USE_VALUE): bool
2930
function exactly(int $n, iterable $items, callable $callback, int $mode = CALLBACK_USE_VALUE): bool

0 commit comments

Comments
 (0)