Re: Fibers 1.2.0 released

2022-12-22 Thread Matt Wette
On 12/22/22 12:33 PM, Aleix Conchillo FlaquƩ wrote: Hi, On behalf of the Fibers team, I am excited to announce Fibers 1.2.0. Thanks much for the hard work!

Fibers 1.2.0 released

2022-12-22 Thread Aleix Conchillo FlaquƩ
Hi, On behalf of the Fibers team, I am excited to announce Fibers 1.2.0. Fibers is a lightweight concurrency facility for Guile that supports non-blocking input and output, millions of concurrent threads, and Concurrent ML-inspired communication primitives. For more information, see the web versi

Re: bytevector-string-ref

2022-12-22 Thread lloda
> On 22 Dec 2022, at 09:58, Sascha Ziemann wrote: > >>> (define str "Hello, World!") >>> (define bv (string->utf8 str)) >>> (define sa (make-shared-array bv (lambda (i) (list (+ i 7))) '(0 4))) >> >> I think this should be >> >> (define sa (make-shared-array bv (lambda (i) (list (+ i 7))) 4

Re: bytevector-string-ref

2022-12-22 Thread Sascha Ziemann
> > (define str "Hello, World!") > > (define bv (string->utf8 str)) > > (define sa (make-shared-array bv (lambda (i) (list (+ i 7))) '(0 4))) > > I think this should be > > (define sa (make-shared-array bv (lambda (i) (list (+ i 7))) 4)) This seems to be the same (equal?): (make-shared-array bv