Filtering...

constant-namep

books/std/system/constant-namep

Included Books

other
(in-package "ACL2")
include-book
(include-book "constant-symbolp")
other
(define constant-namep
  (x (wrld plist-worldp))
  :returns (yes/no booleanp)
  :parents (std/system/event-name-queries)
  :short "Recognize symbols that name constants."
  :long (topstring-p "This function is enabled because it is meant as an abbreviation.
    Theorems triggered by this function should be generally avoided.")
  (and (symbolp x) (constant-symbolp x wrld))
  :enabled t)