Fwd: guile array different than srfi 25

2022-01-11 Thread Damien Mattei
-- Forwarded message - From: Damien Mattei Date: Tue, Jan 11, 2022 at 9:34 PM Subject: Re: guile array different than srfi 25 To: lloda sorry i have no time for this, perhaps only the creation of array differs regards Damien On Tue, Jan 11, 2022 at 6:22 PM lloda wrote: > >

Re: guile array different than srfi 25

2022-01-11 Thread lloda
Guile arrays were implemented before srfi-25 existed and aren't supposed to be compatible with it. There are many other array srfis all with incompatible syntaxes... However srfi-25 is tiny so it should be really simple to implement it on top of Guile arrays. If you or anyone else submits a

guile array different than srfi 25

2022-01-11 Thread Damien Mattei
hello, why guile array differs from SRFI 25: make-array syntax : https://www.gnu.org/software/guile/manual/html_node/Array-Procedures.html (make-array 'ho 2 3) ⇒ #2((ho ho ho) (ho ho ho)) different than srfi 25: https://srfi.schemers.org/srfi-25/srfi-25.html (make-array shape obj) Returns