From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] Add srfi-171 to guile Date: Wed, 25 Mar 2020 22:48:14 +0100 Message-ID: <877dz8gl7l.fsf@gnu.org> References: <87mub2ywcc.fsf@pobox.com> <87fteic3k4.fsf@gnu.org> <1b731380-52d0-43ff-b278-95461205161c@www.fastmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="119813"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) Cc: Guile Devel To: Linus =?utf-8?Q?Bj=C3=B6rnstam?= Original-X-From: guile-devel-bounces+guile-devel=m.gmane-mx.org@gnu.org Wed Mar 25 22:48:42 2020 Return-path: Envelope-to: guile-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jHDtC-000V3J-Jq for guile-devel@m.gmane-mx.org; Wed, 25 Mar 2020 22:48:42 +0100 Original-Received: from localhost ([::1]:43748 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHDtB-0005as-M5 for guile-devel@m.gmane-mx.org; Wed, 25 Mar 2020 17:48:41 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:50488) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHDsm-0005ak-Ip for guile-devel@gnu.org; Wed, 25 Mar 2020 17:48:17 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:49425) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jHDsm-0008Bp-EU; Wed, 25 Mar 2020 17:48:16 -0400 Original-Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=35880 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jHDsl-0004md-Pg; Wed, 25 Mar 2020 17:48:16 -0400 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 6 Germinal an 228 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-pc-linux-gnu In-Reply-To: <1b731380-52d0-43ff-b278-95461205161c@www.fastmail.com> ("Linus \=\?utf-8\?Q\?Bj\=C3\=B6rnstam\=22's\?\= message of "Mon, 23 Mar 2020 18:17:16 +0100") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane-mx.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.io gmane.lisp.guile.devel:20469 Archived-At: Hi Linus, Linus Bj=C3=B6rnstam skribis: > From 1450661c2432522ee41b43dffd05e46384a3ff1b Mon Sep 17 00:00:00 2001 > From: =3D?UTF-8?q?Linus=3D20Bj=3DC3=3DB6rnstam?=3D > Date: Mon, 23 Mar 2020 14:59:39 +0100 > Subject: [PATCH] Add SRFI-171 to guile > > This adds SRFI-171 (transducers) to guile.=20 > > The two guile-specific additions are powerful transducers which can be > used to generalize transducers like tsegment. They are hard to get > right, but powerful and useful enough to warrant inclusion. > > * doc/ref/srfi-modules.texi: added srfi-171 section > * module/Makefile.am (SOURCES): > * module/srfi/srfi-171.scm: > * module/srfi/srfi-171/meta.scm: Add SRFI-171 > * module/srfi/srfi-171/gnu.scm: Add 2 guile-specific extensions. > * test-suite/Makefile.am (SCM_TESTS): > * test-suite/tests/srfi-171.test: Add tests. Perfect, applied! It=E2=80=99s great to have this part of Guile proper. Thank you! Ludo=E2=80=99.