Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add some missing homegeneous vector symbols #1001

Merged
merged 2 commits into from
Oct 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/gerbil/prelude/gambit.ss
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ namespace: #f
subs8vector-fill!
s8vector-concatenate
s8vector-copy
s8vector-copy!
s8vector-append
subs8vector
subs8vector-move!
Expand All @@ -78,6 +79,7 @@ namespace: #f
subu8vector-fill!
u8vector-concatenate
u8vector-copy
u8vector-copy!
u8vector-append
subu8vector
subu8vector-move!
Expand All @@ -94,6 +96,7 @@ namespace: #f
subs16vector-fill!
s16vector-concatenate
s16vector-copy
s16vector-copy!
s16vector-append
subs16vector
subs16vector-move!
Expand All @@ -110,6 +113,7 @@ namespace: #f
subu16vector-fill!
u16vector-concatenate
u16vector-copy
u16vector-copy!
u16vector-append
subu16vector
subu16vector-move!
Expand All @@ -126,6 +130,7 @@ namespace: #f
subs32vector-fill!
s32vector-concatenate
s32vector-copy
s32vector-copy!
s32vector-append
subs32vector
subs32vector-move!
Expand All @@ -142,6 +147,7 @@ namespace: #f
subu32vector-fill!
u32vector-concatenate
u32vector-copy
u32vector-copy!
u32vector-append
subu32vector
subu32vector-move!
Expand All @@ -158,6 +164,7 @@ namespace: #f
subs64vector-fill!
s64vector-concatenate
s64vector-copy
s64vector-copy!
s64vector-append
subs64vector
subs64vector-move!
Expand All @@ -174,6 +181,7 @@ namespace: #f
subu64vector-fill!
u64vector-concatenate
u64vector-copy
u64vector-copy!
u64vector-append
subu64vector
subu64vector-move!
Expand All @@ -190,6 +198,7 @@ namespace: #f
subf32vector-fill!
f32vector-concatenate
f32vector-copy
f32vector-copy!
f32vector-append
subf32vector
subf32vector-move!
Expand All @@ -206,6 +215,7 @@ namespace: #f
subf64vector-fill!
f64vector-concatenate
f64vector-copy
f64vector-copy!
f64vector-append
subf64vector
subf64vector-move!
Expand Down