-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Hi,
it seems that SRFI-43 (vector library) is not (yet) supported. I'd really like to use it. Are there any plans for adding it?
Marijn
- -- Sarcasm puts the iron in irony, cynicism the steel.
Marijn Schouten (hkBst), Gentoo Lisp project, Gentoo ML http://www.gentoo.org/proj/en/lisp/, #gentoo-{lisp,ml} on FreeNode
Afficher les réponses par date
how does this differ from the vector-ref stuff in the gambit manual?
On Sun, Mar 8, 2009 at 7:53 AM, Marijn Schouten (hkBst) hkBst@gentoo.orgwrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Hi,
it seems that SRFI-43 (vector library) is not (yet) supported. I'd really like to use it. Are there any plans for adding it?
Marijn
Sarcasm puts the iron in irony, cynicism the steel.
Marijn Schouten (hkBst), Gentoo Lisp project, Gentoo ML http://www.gentoo.org/proj/en/lisp/, #gentoo-{lisp,ml} on FreeNode -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iEYEARECAAYFAkmz2/IACgkQp/VmCx0OL2zYdQCfV8qoGtuZ3WORrPERknHJAGYE KV0AnjClVeRrN3DCJmM1nSJeHsWT2+Jg =rdVk -----END PGP SIGNATURE----- _______________________________________________ Gambit-list mailing list Gambit-list@iro.umontreal.ca https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
lowly coder wrote:
how does this differ from the vector-ref stuff in the gambit manual?
Well, for instance there is no vector-map and no vector-unfold.
Marijn
- -- Sarcasm puts the iron in irony, cynicism the steel.
Marijn Schouten (hkBst), Gentoo Lisp project, Gentoo ML http://www.gentoo.org/proj/en/lisp/, #gentoo-{lisp,ml} on FreeNode
Feel like sending a patch? :P
P!
2009/3/9 Marijn Schouten (hkBst) hkBst@gentoo.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
lowly coder wrote:
how does this differ from the vector-ref stuff in the gambit manual?
Well, for instance there is no vector-map and no vector-unfold.
Marijn
Sarcasm puts the iron in irony, cynicism the steel.
Marijn Schouten (hkBst), Gentoo Lisp project, Gentoo ML http://www.gentoo.org/proj/en/lisp/, #gentoo-{lisp,ml} on FreeNode -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iEYEARECAAYFAkm0+2EACgkQp/VmCx0OL2zAIgCgrO5EJP+rbvNQvTQVyf8suVFJ 24oAnRNVMffk2kl9nb4IfThoipLYbXAn =x9JA -----END PGP SIGNATURE----- _______________________________________________ Gambit-list mailing list Gambit-list@iro.umontreal.ca https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list
On Mar 8, 2009, at 10:53 AM, Marijn Schouten (hkBst) wrote:
it seems that SRFI-43 (vector library) is not (yet) supported. I'd really like to use it. Are there any plans for adding it?
How isn't it supported? This works:
(load "~~/lib/syntax-case") (compile-file "vector-lib.scm") (load "vector-lib")
"/Users/lucier/Desktop/vector-lib.o1"
Brad
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Bradley Lucier wrote:
On Mar 8, 2009, at 10:53 AM, Marijn Schouten (hkBst) wrote:
it seems that SRFI-43 (vector library) is not (yet) supported. I'd really like to use it. Are there any plans for adding it?
How isn't it supported? This works:
(load "~~/lib/syntax-case") (compile-file "vector-lib.scm") (load "vector-lib")
"/Users/lucier/Desktop/vector-lib.o1"
Brad
IMO that's like saying "ship your own stdlib.[ch]" for a C compiler. It may work, but that doesn't mean it is supported.
On top of that I have bad experiences loading syntax-case with gambit. Leading to crashes and changed behavior. Maybe this was fixed by Marc recently...
Marijn
- -- Sarcasm puts the iron in irony, cynicism the steel.
Marijn Schouten (hkBst), Gentoo Lisp project, Gentoo ML http://www.gentoo.org/proj/en/lisp/, #gentoo-{lisp,ml} on FreeNode
On Mar 9, 2009, at 7:31 AM, Marijn Schouten (hkBst) wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Bradley Lucier wrote:
On Mar 8, 2009, at 10:53 AM, Marijn Schouten (hkBst) wrote:
it seems that SRFI-43 (vector library) is not (yet) supported. I'd really like to use it. Are there any plans for adding it?
How isn't it supported? This works:
(load "~~/lib/syntax-case") (compile-file "vector-lib.scm") (load "vector-lib")
"/Users/lucier/Desktop/vector-lib.o1"
Brad
IMO that's like saying "ship your own stdlib.[ch]" for a C compiler.
Umm, no, it's not.
It may work, but that doesn't mean it is supported.
On top of that I have bad experiences loading syntax-case with gambit. Leading to crashes and changed behavior. Maybe this was fixed by Marc recently...
You need syntax-case only to compile vector-lib, you can use the compiled version with any program, whether it uses syntax-case or not.
Brad