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
The functions defined are variants of functions from sys/cstdlib.adept, but have been made to work with String values instead of C-Strings or have been made to work with additional numeric types.
Additional Functions
func atof(string String) double
func atoi(string String) int
func atol(string String) long
func atoll(string String) long
func strtod(string String) double
func strtof(string String) float
func strtol(string String) long
func strtoll(string String) long
func strtoul(string String) ulong
func strtoull(string String) ulong
func abs(value $T~__number__) $T
func getenv(name String) String
func getenv(name String, out result *String) successful