Function: bindat--pcase

bindat--pcase is a macro defined in bindat.el.gz.

Signature

(bindat--pcase &rest ARGS)

Documentation

Like pcase but optimize the code under the assumption that it's exhaustive.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bindat.el.gz
(defmacro bindat--pcase (&rest args)
  "Like `pcase' but optimize the code under the assumption that it's exhaustive."
  (declare (indent 1) (debug pcase))
  `(pcase ,@args (pcase--dontcare nil)))