Skip to content

Commit 05d3f08

Browse files
committed
update test output
1 parent 527bf9b commit 05d3f08

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tests/analysis_tests/tests/src/expected/Completion.res.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,12 @@ Path Array.
490490
"tags": [],
491491
"detail": "(array<'a>, array<'a>, ('a, 'a) => bool) => bool",
492492
"documentation": {"kind": "markdown", "value": "\n`equal(left, right, predicate)` checks if the two arrays contain the same elements according to the equality `predicate`.\n\n## Examples\n\n```rescript\nArray.equal([1, 2, 3], [1, 2, 3], Int.equal) == true\nArray.equal([1, 2, 3], [1, 3, 2], Int.equal) == false\n```\n"}
493+
}, {
494+
"label": "concatAll",
495+
"kind": 12,
496+
"tags": [],
497+
"detail": "array<array<'a>> => array<'a>",
498+
"documentation": {"kind": "markdown", "value": "\n`concatAll(arrays)` concatenates all arrays in `arrays`, creating a new array.\n\nSee [`Array.concat`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/concat) on MDN.\n\n## Examples\n```rescript\nlet arrays = [[\"hi\", \"hello\"], [\"yay\"], [\"wehoo\"]]\n\nlet result = Array.concatAll(arrays)\n\nassertEqual(arrays, [[\"hi\", \"hello\"], [\"yay\"], [\"wehoo\"]])\nassertEqual(result, [\"hi\", \"hello\", \"yay\", \"wehoo\"])\n```\n"}
493499
}, {
494500
"label": "joinUnsafe",
495501
"kind": 12,

0 commit comments

Comments
 (0)