Filtering...

cons-listp

books/std/typed-lists/cons-listp

Included Books

other
(in-package "ACL2")
include-book
(include-book "std/util/deflist" :dir :system)
other
(deflist cons-listp
  (x)
  (consp x)
  :elementp-of-nil nil
  :cheap t
  :parents (std/typed-lists alistp)
  :short "Like @(see alistp) but doesn't require that the final cdr is @('nil').")
other
(deflist cons-list-listp
  (x)
  (cons-listp x)
  :parents (std/typed-lists)
  :elementp-of-nil t)