Filtering...

macro-symbol-listp

books/std/system/macro-symbol-listp

Included Books

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