You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"documentation": {"kind": "markdown", "value": "\n Converts a given `int` to a `float`.\n\n ```res example\n Js.log(Belt.Int.toFloat(1) === 1.0) /* true */\n ```\n"}
1722
1722
}]
1723
1723
1724
+
Complete src/Completion.res 420:19
1725
+
posCursor:[420:19] posNoWhite:[420:18] Found expr:[420:11->420:19]
1726
+
Completable: Cpath float->t
1727
+
Raw opens: 2 Shadow.B.place holder ... Shadow.A.place holder
1728
+
Resolved opens 2 Completion.res Completion.res
1729
+
[{
1730
+
"label": "Belt.Float.toInt",
1731
+
"kind": 12,
1732
+
"tags": [],
1733
+
"detail": "float => int",
1734
+
"documentation": {"kind": "markdown", "value": "\nConverts a given `float` to an `int`.\n\n```res example\nJs.log(Belt.Float.toInt(1.0) === 1) /* true */\n```\n"}
1735
+
}, {
1736
+
"label": "Belt.Float.toString",
1737
+
"kind": 12,
1738
+
"tags": [],
1739
+
"detail": "float => string",
1740
+
"documentation": {"kind": "markdown", "value": "\n Converts a given `float` to a `string`. Uses the JavaScript `String` constructor under the hood.\n\n ```res example\n Js.log(Belt.Float.toString(1.0) === \"1.0\") /* true */\n ```\n"}
0 commit comments