racket/collects/2htdp/private/clauses-spec-aux.rkt
2012-11-07 11:34:33 -05:00

54 lines
1.3 KiB
Racket

#lang racket/base
;; ---------------------------------------------------------------------------------------------------
;; provides constants and functions for specifying the shape of clauses in big-bang and universe
(provide nat> nat? proc> bool> num> ip> string> symbol> string-or-symbol> any> K False True)
(require htdp/error "check-aux.rkt")
(define (K w . r) w)
(define (False w) #f)
(define (True w) #t)
;; Symbol X -> X : boolean?
(define (bool> tag x)
(check-arg tag (boolean? x) "boolean" "first" x)
x)
;; Symbol X -> X : string?
(define (string> tag x)
(check-arg tag (string? x) "string" "first" x)
x)
;; Symbol X -> X : symbol?
(define (symbol> tag x)
(check-arg tag (symbol? x) "symbol" "second" x)
x)
;; Symbol X -> X : symbol? or string?
(define (string-or-symbol> tag x)
(check-arg tag (or (symbol? x) (string? x)) "symbol or string" "first" x)
x)
(define ip> string>)
;; Symbol X Nat -> X
(define (proc> tag f ar)
(check-proc tag f ar "first" (if (> ar 1) (format "~a arguments" ar) "one argument"))
f)
;; Symbol X (Number -> Boolean) String String -> X
(define (num> tag x pred? spec which)
(check-arg tag (and (number? x) (pred? x)) spec which x)
x)
;; Symbol X String -> X
(define (nat> tag x spec)
(check-arg tag (nat? x) spec "natural number" x)
x)
;; Symbol X String -> X
(define (any> tag x)
x)