You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(defpackage:example
(:use:cl))
(in-package:example)
(declaim (ftype (function (floatfloat) float) foo))
(defunfoo (a b)
(+ a b))
(CCL:FUNCTION-INFORMATION 'EXAMPLE::FOO) yields (VALUES FUNCTION NIL NIL). Given the top-level FTYPE declaration, I would expect the third value (an alist) to contain a (FTYPE FUNCTION (FLOAT FLOAT) FLOAT) entry, as described in CLtL2 8.5. Environments.
The text was updated successfully, but these errors were encountered:
Given the following code:
(CCL:FUNCTION-INFORMATION 'EXAMPLE::FOO)
yields(VALUES FUNCTION NIL NIL)
. Given the top-levelFTYPE
declaration, I would expect the third value (an alist) to contain a(FTYPE FUNCTION (FLOAT FLOAT) FLOAT)
entry, as described in CLtL2 8.5. Environments.The text was updated successfully, but these errors were encountered: