Filtering...

nonkeyword-listp

books/std/basic/nonkeyword-listp

Included Books

other
(in-package "ACL2")
include-book
(include-book "std/util/deflist" :dir :system)
other
(deflist nonkeyword-listp
  (x)
  :parents (std/basic keywordp)
  :short "Recognize lists of non-keywords."
  (keywordp x)
  :true-listp t
  :negatedp t
  :elementp-of-nil nil)