len(<list>) ==> Return the number of element in the list given in argument
len(<list>)
intToFloat(i: Int) ==> Convert the int given in argument into a float
intToFloat(i: Int)
floatToInt(f: Float) ==> Convert the float given in argument into an int
floatToInt(f: Float)
stringToInt(s: String) ==> Convert the string given in argument into an int if one is found
stringToInt(s: String)
intToString(i: Int) ==> Convert the int given in argument into a string
intToString(i: Int)
intToBool(i: Int) ==> Convert the int given in argument into a boolean
intToBool(i: Int)
floatToString(f: Float) ==> Convert the float given in argument into a string
floatToString(f: Float)
len([1,2,3,4,5]) => 5
len([]) => 0
intToFloat(42) => 42.0
Last updated 2 years ago
stringToInt("42") => 42
intToString(42) => "42"
intToBool(42) => true
intToBool(0) => false
floatToString(42.6) => "42.6"