Re: Functional hashtables

2020-05-17 Thread Catonano
Il giorno sab 16 mag 2020 alle ore 22:43 Ludovic Courtès ha scritto: > > Would someone be willing to turn it into a proper Guile module with a > section in the manual and some tests? > > I'm ready to help maybe contributing some tests or some manual paragraphs

Re: Functional hashtables

2020-05-16 Thread Ludovic Courtès
Hi there! Christopher Lemmer Webber skribis: > There's no separate package of guile-fash available anywhere, but it > would be easy enough to do if we're just using it with Guix. It's > desirable to not have to keep copy-pasta'ing fash.scm around at least. > > My time in Racket has convinced me

Re: Functional hashtables

2020-05-08 Thread Christopher Lemmer Webber
ArneBab writes: > Christopher Lemmer Webber writes: > >> Linus Björnstam writes: >> >>> I made a module out of Andy's dash (and added some comfort functions >>> over fash-fold): >>> https://hg.sr.ht/~bjoli/guile-fash/browse/fash.scm?rev=default >> >> BTW, I am getting: >> >> cwebber@twig:~/devel$

Re: Functional hashtables

2020-05-06 Thread ArneBab
Christopher Lemmer Webber writes: > Linus Björnstam writes: > >> I made a module out of Andy's dash (and added some comfort functions >> over fash-fold): >> https://hg.sr.ht/~bjoli/guile-fash/browse/fash.scm?rev=default > > BTW, I am getting: > > cwebber@twig:~/devel$ git clone https://hg.sr.ht

Re: Functional hashtables

2020-05-06 Thread Linus Björnstam
My code is still using mercurial. I will migrate it to git when I have the time. -- Linus Björnstam On Wed, 6 May 2020, at 13:24, Christopher Lemmer Webber wrote: > Linus Björnstam writes: > > > I made a module out of Andy's dash (and added some comfort functions > > over fash-fold): > > http

Re: Functional hashtables

2020-05-06 Thread Christopher Lemmer Webber
Linus Björnstam writes: > I made a module out of Andy's dash (and added some comfort functions > over fash-fold): > https://hg.sr.ht/~bjoli/guile-fash/browse/fash.scm?rev=default BTW, I am getting: cwebber@twig:~/devel$ git clone https://hg.sr.ht/~bjoli/guile-fash Cloning into 'guile-fash'... fa

Re: Functional hashtables

2020-05-06 Thread Christopher Lemmer Webber
Linus Björnstam writes: > I made a module out of Andy's dash (and added some comfort functions > over fash-fold): > https://hg.sr.ht/~bjoli/guile-fash/browse/fash.scm?rev=default > > What it lacks is a proper way to remove elements..I had a couple of > stabs at it, but I fear I was too dumb. Ah e

Re: Functional hashtables

2020-05-05 Thread Linus Björnstam
I made a module out of Andy's dash (and added some comfort functions over fash-fold): https://hg.sr.ht/~bjoli/guile-fash/browse/fash.scm?rev=default What it lacks is a proper way to remove elements..I had a couple of stabs at it, but I fear I was too dumb. -- Linus Björnstam On Tue, 5 May

Functional hashtables

2020-05-05 Thread Christopher Lemmer Webber
Hello hello, I'm working on porting a library I've written from Racket to Guile. Some interesting news on that soon. In the meanwhile, I'm trying to figure out what to do about my need for functional hashmaps in Guile. Right now Guile ships with vlist and vhash. Andy also wrote fash.scm, which