From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 130195 invoked by alias); 2 Jan 2019 01:19:16 -0000 Mailing-List: contact kawa-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: kawa-owner@sourceware.org Received: (qmail 130181 invoked by uid 89); 2 Jan 2019 01:19:15 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,KAM_SHORT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:426, noticed X-HELO: mail-io1-f52.google.com Received: from mail-io1-f52.google.com (HELO mail-io1-f52.google.com) (209.85.166.52) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 02 Jan 2019 01:19:14 +0000 Received: by mail-io1-f52.google.com with SMTP id r200so23471007iod.11 for ; Tue, 01 Jan 2019 17:19:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=0YbdlfkZmnMsMQPvrcgXq49zpwPSQiapNPxnPooqYhA=; b=C0+ryubTEHPTsiz3GaJOz272HMejfciWk1wtjVWWktGy5YUgPXdkbIiNOaN8j4nuA6 2h1+7Fk2U9u/oh2B8TjkhJoVe4vJfixijn+Hd0HKG9VxBQHBqnW/r8yQF+ldsFnBAEBP zg0NBNPwFF+r6FMBLrnWdJhtpyGRVJ291hXgdu4dgJfNhxejxKeYhgjqaK7uS1EDCmZY nHGarlG6qLeYoQPfN9TECcEeI0dg3B8u+owDZ5eEiBRb6UKYc+zbTKpwBnfsRjqtRC/Y pD2Lmhd1rqJEJtndxaxrM4AIbs0tkQcLf09zt0wwZ6M9UAUPUdbHu8B9tu5VfuG7n4dJ x+oA== MIME-Version: 1.0 From: Duncan Mak Date: Wed, 02 Jan 2019 01:19:00 -0000 Message-ID: Subject: Supporting SRFI 43 (Vectors) To: kawa mailing list Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-q1/txt/msg00015.txt.bz2 Hello all, As part of my project, I needed to use some APIs from SRFI 43 (vectors). I noticed that Kawa doesn't come with this SRFI, it has its own APIs for Vector (https://www.gnu.org/software/kawa/Vectors.html) and that is a subset of the entire SRFI 43 definition. In particular, I was missing vector-reverse-copy! What would it take to get SRFI 43 into the Kawa distribution? -- Duncan.