Raw constructor for vl-iframe-p structures.
Syntax:
(vl-iframe initially-activep some-thing-satisfiedp already-saw-elsep)
This is the lowest-level constructor for vl-iframe-p structures. It simply conses together a structure with the specified fields.
Note: It's generally better to use macros like make-vl-iframe or change-vl-iframe instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.
The vl-iframe-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-vl-iframe instead.
This is an ordinary constructor function introduced by defaggregate.
Function:
(defun vl-iframe (initially-activep some-thing-satisfiedp already-saw-elsep) (declare (xargs :guard (and (booleanp initially-activep) (booleanp some-thing-satisfiedp) (booleanp already-saw-elsep)))) (cons :vl-iframe (cons (cons 'initially-activep initially-activep) (cons (cons 'some-thing-satisfiedp some-thing-satisfiedp) (cons (cons 'already-saw-elsep already-saw-elsep) nil)))))