From 641653563d52660e78a25d0f4fd37e61e2a583a1 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Tue, 20 Dec 2016 11:31:46 +0100 Subject: [PATCH] Partial srfi-43 support for Nyacc. * module/srfi/srfi-43.mes: New file. --- module/srfi/srfi-43.mes | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 module/srfi/srfi-43.mes diff --git a/module/srfi/srfi-43.mes b/module/srfi/srfi-43.mes new file mode 100644 index 00000000..b29cab17 --- /dev/null +++ b/module/srfi/srfi-43.mes @@ -0,0 +1,31 @@ +;;; -*-scheme-*- + +;;; Mes --- Maxwell Equations of Software +;;; Copyright © 2016 Jan Nieuwenhuizen +;;; +;;; This file is part of Mes. +;;; +;;; Mes is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; Mes is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with Mes. If not, see . + +;;; Commentary: + +;;; Minimal implementation of srfi-43, for nyacc. + +;;; Code: + +(define (vector-map f v) + (list->vector (map f (vector->list v) (iota (vector-length v))))) + +(define (vector-for-each f v) + (for-each f (vector->list v) (iota (vector-length v))))