We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fbb1fd5 + b45060c commit b3edb6cCopy full SHA for b3edb6c
src/stdlib/Builtins.fs
@@ -107,6 +107,12 @@ type IExports =
107
abstract map : ('T1 * 'T2 * 'T3 -> 'T4) * IEnumerable<'T1> * IEnumerable<'T2> * IEnumerable<'T3> -> IEnumerable<'T4>
108
/// Return the Unicode code point for a one-character string.
109
abstract ord : char -> int
110
+ // Object to string
111
+ abstract str : obj -> string
112
+ // Object to int
113
+ abstract int : obj -> int
114
+ // Object to float
115
+ abstract float : obj -> float
116
abstract print : obj: obj -> unit
117
abstract read : file: _OpenFile -> TextIOWrapper
118
abstract read : file: _OpenFile * mode: OpenTextMode -> TextIOWrapper
0 commit comments