From 22a655fd2477bf75e076b7159d1b64930cac7122 Mon Sep 17 00:00:00 2001 From: Schrottkatze Date: Wed, 10 Jan 2024 12:45:41 +0100 Subject: [PATCH] write initial type signature notation proposal --- docs/design/type-notation.typ | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/design/type-notation.typ diff --git a/docs/design/type-notation.typ b/docs/design/type-notation.typ new file mode 100644 index 0000000..58977b9 --- /dev/null +++ b/docs/design/type-notation.typ @@ -0,0 +1,23 @@ +#import "../template.typ": conf +#show: doc => conf( + doc +) + += Type/signature notation + +Operator signature that takes two unnamed arbitrary numbers of the same type and returns another: +`Op [ T T ] -> T` + +Operator that takes a 32 bit signed integer and returns another: +`Op i32 -> i32` + +Operator that does the same with a generic arbitrary number type: +`Op T -> T` + +One dimensional list of 32 bit signed integers: +`[i32]` + +Due to inference, you'll also be able to use that in some mathematical operations with integers: + +`[i32] + i32` is a valid operation, for example (of course, you can't add types.) But that wouldn't add the second one to the list, but rather add the single i32 to all values in the left hand side list). That would also work with more dimensional arrays and dynamic streams like videos. +