Home | History | Annotate | Download | only in allegrocl

Lines Matching refs:arity

352 (cl::defun full-name (id type arity class)
370 (:constructor (cl::format nil "new_~A~@[~A~]" id arity))
376 class id arity)))))
378 (cl::defun identifier-convert-null (id &key type class arity)
381 id :type :getter :class class :arity arity))
382 (read-symbol-from-string (full-name id type arity class))))
405 (cl::defun identifier-convert-lispify (cname &key type class arity)
410 cname :type :getter :class class :arity arity))))
411 (cl::setq cname (full-name cname type arity class))
453 &key (type :operator) class arity)
457 :arity arity :class class))
464 :type :ff-operator :arity arity :class class)
488 &key (type :operator) class arity)
492 :arity arity :class class))
519 ,@(cl::loop for arity in arities
521 :type type :class class :arity arity)
522 collect `(,arity (cl::apply #',symbol-n args)))