2007-10-25 16:27:34 -04:00
|
|
|
;;; Ikarus Scheme -- A compiler for R6RS Scheme.
|
2008-01-29 00:34:34 -05:00
|
|
|
;;; Copyright (C) 2006,2007,2008 Abdulaziz Ghuloum
|
2007-10-25 16:27:34 -04:00
|
|
|
;;;
|
|
|
|
;;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;;; it under the terms of the GNU General Public License version 3 as
|
|
|
|
;;; published by the Free Software Foundation.
|
|
|
|
;;;
|
|
|
|
;;; This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2007-05-05 17:39:18 -04:00
|
|
|
|
|
|
|
(library (ikarus apply)
|
|
|
|
(export apply)
|
|
|
|
(import
|
|
|
|
(except (ikarus) apply)
|
2007-05-06 17:57:31 -04:00
|
|
|
(ikarus system $pairs)
|
2007-05-06 18:10:51 -04:00
|
|
|
(ikarus system $stack))
|
2007-05-05 17:39:18 -04:00
|
|
|
|
|
|
|
(define apply
|
|
|
|
(let ()
|
|
|
|
(define (err f ls)
|
|
|
|
(if (procedure? f)
|
2007-12-15 08:22:49 -05:00
|
|
|
(die 'apply "not a list" ls)
|
|
|
|
(die 'apply "not a procedure" f)))
|
2007-05-05 17:39:18 -04:00
|
|
|
(define (fixandgo f a0 a1 ls p d)
|
|
|
|
(cond
|
|
|
|
[(null? ($cdr d))
|
|
|
|
(let ([last ($car d)])
|
|
|
|
($set-cdr! p last)
|
|
|
|
(if (and (procedure? f) (list? last))
|
|
|
|
($$apply f a0 a1 ls)
|
|
|
|
(err f last)))]
|
|
|
|
[else (fixandgo f a0 a1 ls d ($cdr d))]))
|
|
|
|
(define apply
|
|
|
|
(case-lambda
|
|
|
|
[(f ls)
|
|
|
|
(if (and (procedure? f) (list? ls))
|
|
|
|
($$apply f ls)
|
|
|
|
(err f ls))]
|
|
|
|
[(f a0 ls)
|
|
|
|
(if (and (procedure? f) (list? ls))
|
|
|
|
($$apply f a0 ls)
|
|
|
|
(err f ls))]
|
|
|
|
[(f a0 a1 ls)
|
|
|
|
(if (and (procedure? f) (list? ls))
|
|
|
|
($$apply f a0 a1 ls)
|
|
|
|
(err f ls))]
|
|
|
|
[(f a0 a1 . ls)
|
|
|
|
(fixandgo f a0 a1 ls ls ($cdr ls))]))
|
|
|
|
apply)))
|