mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-01 23:30:40 -08:00
SUBSEQ should also work with vectors of bytes.
This commit is contained in:
parent
f03ef8ae16
commit
874affc400
1 changed files with 5 additions and 0 deletions
|
|
@ -211,6 +211,11 @@ E:
|
|||
x->array.self.lf[j] =
|
||||
sequence->array.self.lf[i];
|
||||
break;
|
||||
case aet_b8:
|
||||
case aet_i8:
|
||||
for (i = s, j = 0; i < e; i++, j++)
|
||||
x->vector.self.b8[j] = sequence->vector.self.b8[i];
|
||||
break;
|
||||
default:
|
||||
internal_error("subseq");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue