Function: bindat--type-pe--cmacro

bindat--type-pe--cmacro is a function defined in bindat.el.gz.

Signature

(bindat--type-pe--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining bindat--type-pe.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bindat.el.gz
;; Closure converted to defun by helpful.
(defun bindat--type-pe--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `bindat--type-pe'."
  (cl-block bindat--type-pe--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block bindat--type-pe
	(progn
	  (or
	   (cl--struct-bindat--type-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'bindat--type cl-x)))
	  (aref cl-x 3)))
     nil nil nil cl-x)))