Raw constructor for honsed vl-timetoken-p structures.
Syntax:
(honsed-vl-timetoken etext quantity units breakp)
This is identical to vl-timetoken, except that we hons the structure we are creating.
This is an ordinary honsing constructor introduced by defaggregate.
Function:
(defun honsed-vl-timetoken (etext quantity units breakp) (declare (xargs :guard (and (and (vl-echarlist-p etext) (consp etext)) (stringp quantity) (vl-timeunit-p units) (booleanp breakp)))) (mbe :logic (vl-timetoken etext quantity units breakp) :exec (hons :vl-timetoken (hons (hons etext quantity) (hons units breakp)))))