Re: `bytevector-length' doesn't accept a shared array from a bytevector

2017-02-21 Thread Daniel Llorens
On 21 Feb 2017, at 19:51, Diogo F. S. Ramos wrote: >> On 21 Feb 2017, at 14:21, Diogo F. S. Ramos wrote: >> >>> I want to take the length of a shared array, but `bytevector-length' >>> throws an error claiming the shared array isn't a bytevector, even >>> though it prints the error argument as

Re: `bytevector-length' doesn't accept a shared array from a bytevector

2017-02-21 Thread Diogo F. S. Ramos
> On 21 Feb 2017, at 14:21, Diogo F. S. Ramos wrote: > >> I want to take the length of a shared array, but `bytevector-length' >> throws an error claiming the shared array isn't a bytevector, even >> though it prints the error argument as one. >> >> I am using Guile 2.0.11, Debian Stable package

Re: `bytevector-length' doesn't accept a shared array from a bytevector

2017-02-21 Thread Daniel Llorens
On 21 Feb 2017, at 14:21, Diogo F. S. Ramos wrote: > I want to take the length of a shared array, but `bytevector-length' > throws an error claiming the shared array isn't a bytevector, even > though it prints the error argument as one. > > --8<---cut here---start---

`bytevector-length' doesn't accept a shared array from a bytevector

2017-02-21 Thread Diogo F. S. Ramos
I want to take the length of a shared array, but `bytevector-length' throws an error claiming the shared array isn't a bytevector, even though it prints the error argument as one. --8<---cut here---start->8--- scheme@(guile-user)> ,use (rnrs bytevectors) scheme@