Artifact
49f133f318959c43a91f6e3ef3d69607a8e25d0d:
- File
srfi/s37/args-fold.sls
— part of check-in
[723d9456e8]
at
2018-12-09 15:41:45
on branch trunk
— fixed bug for in args-fold.sls thanks to anonymous
(user:
aldo
size: 1384)
;; Copyright (c) 2009 Derick Eddington. All rights reserved.
;; Licensed under an MIT-style license. My license is in the file
;; named LICENSE from the original collection this file is distributed
;; with. If this file is redistributed with some other collection, my
;; license must also be included.
#!r6rs
(library (srfi s37 args-fold)
(export
args-fold
(rename (make-option option))
option?
option-names
option-required-arg?
option-optional-arg?
option-processor)
(import
(rnrs)
(srfi private include))
(define-record-type option
(fields
names required-arg? optional-arg? processor)
(protocol
(lambda (c)
(lambda (n ra oa p)
(if (and
(and (list? n)
(positive? (length n))
(for-all (lambda (x)
(or (and (string? x) (positive? (string-length x)))
(char? x)))
n))
(boolean? ra)
(boolean? oa)
(not (and ra oa))
(procedure? p))
(c n ra oa p)
(assertion-violation 'option "invalid arguments" n ra oa p))))))
(define args-fold
(let ([option make-option])
(include/resolve ("srfi" "s37") "srfi-37-reference.scm")
args-fold))
)