Add alternate syntax for s7 arrays

This commit is contained in:
Lassi Kortela 2022-06-17 22:38:05 +03:00
parent 73da0616d6
commit 2df8a2be84
1 changed files with 9 additions and 0 deletions

View File

@ -100,6 +100,9 @@
(id "#i")
(description "Inexact number [R2RS+]")
(id "#i<n>d(...)")
(description "n-dimensional signed integer array [s7]")
(id "#lang")
(description "Declare which programming language is used [Racket]")
@ -112,6 +115,9 @@
(id "#<n>r(...)")
(description "n-dimensional real (i.e. float) array [s7]")
(id "#r<n>d(...)")
(description "n-dimensional real (i.e. float) array [s7]")
(id "#s<n>(...)")
(description "n-bit signed integer vector [SRFI 4, 160: n = 8, 16, 32, 64]")
@ -127,6 +133,9 @@
(id "#u<n>(...)")
(description "n-bit unsigned integer vector [SRFI 4, 160: n = 8, 16, 32, 64]")
(id "#u<n>d(...)")
(description "n-dimensional byte array [s7]")
(id "#u8(...)")
(description "Bytevector [R7RS]")