We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07d0529 commit 6840c82Copy full SHA for 6840c82
1 file changed
src/Core__Array.resi
@@ -979,6 +979,7 @@ external at: (array<'a>, int) => option<'a> = "at"
979
3->Array.fromSingleton // [3]
980
undefined->Array.fromSingleton // [undefined]
981
Some("abc")->Array.fromSingleton // [Some("abc")]
982
+[1,2,3]->Array.fromSingleton // [[1,2,3]]
983
{"x": 3, "y": 5}->Array.fromSingleton // Some({"x": 3, "y": 5})
984
```
985
0 commit comments