Function: eshell-range-create

eshell-range-create is a byte-compiled function defined in esh-util.el.gz.

Signature

(eshell-range-create BEGIN END)

Documentation

Constructor for objects of type eshell-range.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(cl-defstruct (eshell-range
               (:constructor nil)
               (:constructor eshell-range-create (begin end)))
  "A half-open range from BEGIN to END."
  begin end)