git @ Cat's Eye Technologies Robin / develop-0.6 stdlib / bound-p.robin
develop-0.6

Tree @develop-0.6 (Download .tar.gz)

bound-p.robin @develop-0.6raw · history · blame

;'<<SPEC'

    -> Tests for functionality "Evaluate Robin Expression (with Env)"

`bound?` takes a single argument, which should be a symbol, and
evaluates to `#t` if it the symbol is bound to a value in the
current environment, or `#f` if it is not.

    | (bound? bound?)
    = #t

    | (bound? xuzumsunazun)
    = #f

    | (bind xuzumsunazun 3 (bound? xuzumsunazun))
    = #t

The single argument to `bound?` should be a symbol.

    | (bound? 3)
    ? uncaught exception: (expected-symbol 3)

`bound?` expects exactly two arguments.

    | (bound? bound? bound?)
    ? uncaught exception: (illegal-arguments (bound? bound?))

    | (bound?)
    ? uncaught exception: (illegal-arguments ())

'<<SPEC'

(define bound? (macro (self args env)
  (if (equal? args ())
    (abort (list (literal illegal-arguments) args))
    (if (equal? (tail args) ())
      (bind symbol (head args)
        (if (symbol? symbol)
          (if (equal? (lookup symbol env) ()) #f #t)
          (abort (list (literal expected-symbol) symbol))))
      (abort (list (literal illegal-arguments) args))))))