-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
39 changed files
with
422 additions
and
389 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
hostfunc arrayFill(val any, n int) List | ||
hostfunc asciiCode(val any) any | ||
hostfunc bool(val any) boolean | ||
hostfunc char(val any) any | ||
hostfunc copy(val any) any | ||
hostfunc errorReport() string | ||
hostfunc isAlpha(val int) boolean | ||
hostfunc isDigit(val int) boolean | ||
hostfunc must(val any) any | ||
hostfunc opaque(val any) pointer | ||
hostfunc panic(err any) none | ||
hostfunc parseCyber(src any) Map | ||
hostfunc parseCyon(src any) any | ||
hostfunc performGC() Map | ||
hostfunc print(str any) none | ||
hostfunc prints(str any) none | ||
hostfunc runestr(val int) string | ||
hostfunc toCyon(val any) string | ||
hostfunc typeid(val any) int | ||
hostfunc valtag(val any) symbol | ||
hostfunc typesym(val any) symbol | ||
hostfunc typeof(val any) metatype | ||
@host func arrayFill(val any, n int) List | ||
@host func asciiCode(val any) any | ||
@host func bool(val any) boolean | ||
@host func char(val any) any | ||
@host func copy(val any) any | ||
@host func errorReport() string | ||
@host func isAlpha(val int) boolean | ||
@host func isDigit(val int) boolean | ||
@host func must(val any) any | ||
@host func opaque(val any) pointer | ||
@host func panic(err any) none | ||
@host func parseCyber(src any) Map | ||
@host func parseCyon(src any) any | ||
@host func performGC() Map | ||
@host func print(str any) none | ||
@host func prints(str any) none | ||
@host func runestr(val int) string | ||
@host func toCyon(val any) string | ||
@host func typeid(val any) int | ||
@host func valtag(val any) symbol | ||
@host func typesym(val any) symbol | ||
@host func typeof(val any) metatype |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
hostfunc abs(a float) float | ||
hostfunc acos(a float) float | ||
hostfunc acosh(a float) float | ||
hostfunc asin(a float) float | ||
hostfunc asinh(a float) float | ||
hostfunc atan(a float) float | ||
hostfunc atan2(a float, b float) float | ||
hostfunc atanh(a float) float | ||
hostfunc cbrt(a float) float | ||
hostfunc ceil(a float) float | ||
hostfunc clz32(a float) float | ||
hostfunc cos(a float) float | ||
hostfunc cosh(a float) float | ||
hostfunc exp(a float) float | ||
hostfunc expm1(a float) float | ||
hostfunc floor(a float) float | ||
hostfunc hypot(a float, b float) float | ||
hostfunc isNaN(a float) boolean | ||
hostfunc ln(a float) float | ||
hostfunc log(a float, b float) float | ||
hostfunc log10(a float) float | ||
hostfunc log1p(a float) float | ||
hostfunc log2(a float) float | ||
hostfunc max(a float, b float) float | ||
hostfunc min(a float, b float) float | ||
hostfunc mul32(a float, b float) float | ||
hostfunc pow(a float, b float) float | ||
hostfunc random() float | ||
hostfunc round(a float) float | ||
hostfunc sign(a float) float | ||
hostfunc sin(a float) float | ||
hostfunc sinh(a float) float | ||
hostfunc sqrt(a float) float | ||
hostfunc tan(a float) float | ||
hostfunc tanh(a float) float | ||
hostfunc trunc(a float) float | ||
@host func abs(a float) float | ||
@host func acos(a float) float | ||
@host func acosh(a float) float | ||
@host func asin(a float) float | ||
@host func asinh(a float) float | ||
@host func atan(a float) float | ||
@host func atan2(a float, b float) float | ||
@host func atanh(a float) float | ||
@host func cbrt(a float) float | ||
@host func ceil(a float) float | ||
@host func clz32(a float) float | ||
@host func cos(a float) float | ||
@host func cosh(a float) float | ||
@host func exp(a float) float | ||
@host func expm1(a float) float | ||
@host func floor(a float) float | ||
@host func hypot(a float, b float) float | ||
@host func isNaN(a float) boolean | ||
@host func ln(a float) float | ||
@host func log(a float, b float) float | ||
@host func log10(a float) float | ||
@host func log1p(a float) float | ||
@host func log2(a float) float | ||
@host func max(a float, b float) float | ||
@host func min(a float, b float) float | ||
@host func mul32(a float, b float) float | ||
@host func pow(a float, b float) float | ||
@host func random() float | ||
@host func round(a float) float | ||
@host func sign(a float) float | ||
@host func sin(a float) float | ||
@host func sinh(a float) float | ||
@host func sqrt(a float) float | ||
@host func tan(a float) float | ||
@host func tanh(a float) float | ||
@host func trunc(a float) float |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.