Filtering...

theorem-symbol-listp

books/std/system/theorem-symbol-listp

Included Books

other
(in-package "ACL2")
include-book
(include-book "theorem-symbolp")
include-book
(include-book "std/util/deflist" :dir :system)
other
(deflist theorem-symbol-listp
  (x wrld)
  :parents (std/system/event-name-queries)
  :short "Lift @(tsee theorem-symbolp) to lists."
  :guard (and (symbol-listp x) (plist-worldp wrld))
  (theorem-symbolp x wrld)
  :true-listp t)