[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
cboundp & symbol-class
- To: CommonLoops.pa@Xerox.COM
- Subject: cboundp & symbol-class
- From: kanderso@WILMA.BBN.COM
- Date: Mon, 11 Apr 88 20:24:37 -0400
- Cc: kanderson@WILMA.BBN.COM, pci-people%atc.alcoa.com@relay.cs.net, jmattson@WILMA.BBN.COM
- Redistributed: CommonLoops.pa
;;; Patch added to the end of high.lisp:
;;; KRA: Obvious extensions to PCL to make it a bit more like CLOS chapter 2.
(export 'cboundp 'pcl)
(defun cboundp (symbol &optional environment)
(declare (ignore environment))
;; "The function CBOUNDP returns TRUE or FALSE."
(if (class-named symbol t) t))
(export 'symbol-class 'pcl)
(defun symbol-class (symbol &optional environment)
(declare (ignore environment))
(class-named symbol t))