Filtering...

fapply-terms-same-args

books/std/system/fapply-terms-same-args

Included Books

other
(in-package "ACL2")
include-book
(include-book "fapply-term")
include-book
(include-book "pseudo-termfn-listp")
other
(define fapply-terms-same-args
  ((fns pseudo-termfn-listp) (args pseudo-term-listp))
  :returns (terms "A @(tsee pseudo-term-listp).")
  :verify-guards nil
  :parents (std/system/term-transformations)
  :short "Variant of @(tsee apply-terms-same-args)
          that performs no simplification."
  :long (topstring-p "The meaning of the starting @('f') in the name of this utility
    is analogous to @(tsee fcons-term) compared to @(tsee cons-term).")
  (if (endp fns)
    nil
    (cons (fapply-term (car fns) args)
      (fapply-terms-same-args (cdr fns) args))))