Update array_functions.md

This commit is contained in:
alexey-milovidov 2019-12-26 20:17:25 +03:00 committed by GitHub
parent a0e2d5afac
commit bf0fd8aa7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -798,10 +798,7 @@ Converts an array of arrays to a flat array.
Function:
- Applies to any depth of nested arrays, but all the elements must be on the same level.
For example, array `[[[1]], [[2], [3]]]` can be flattened, but array `[[1], [[2], [3]]]` can't.
- Applies to any depth of nested arrays.
- Does not change arrays that are already flat.
The flattened array contains all the elements from all source arrays.