Filtering...

string-symbollist-alistp

books/std/typed-alists/string-symbollist-alistp

Included Books

other
(in-package "ACL2")
include-book
(include-book "std/util/defalist" :dir :system)
other
(defalist string-symbollist-alistp
  (x)
  :parents (std/typed-alists)
  :short "Recognize alists from strings to true lists of symbols."
  :key (stringp x)
  :val (symbol-listp x)
  :true-listp t
  :keyp-of-nil nil
  :valp-of-nil t)