タグ

関連タグで絞り込む (3)

タグの絞り込みを解除

srfiに関するkiyo_hikoのブックマーク (1)

  • SRFI 1: List Library

    by Olin Shivers Status This SRFI is currently in final status. Here is an explanation of each status that a SRFI can hold. To provide input on this SRFI, please send email to srfi-1 @nospamsrfi.schemers.org. To subscribe to the list, follow these instructions. You can access previous messages via the mailing list archive. Received: 1998-11-08 Draft: 1998-12-22--1999-03-09 Revised: several times Fi

    kiyo_hiko
    kiyo_hiko 2013/05/29
    CLでiotaっぽいものをやっつけで書いた。 (defun iota (to &optional (from 0) (step 1)) (do ((i from (incf i step)) (ns nil)) ((< to i) (nreverse ns)) (setf ns (cons i ns))))
  • 1