Function: treemacs-project->is-last?

treemacs-project->is-last? is a byte-compiled function defined in treemacs-workspaces.el.

Signature

(treemacs-project->is-last\? SELF)

Documentation

Return t when root node of project SELF is the last in the view.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-workspaces.el
(define-inline treemacs-project->is-last? (self)
  "Return t when root node of project SELF is the last in the view."
  (declare (side-effect-free t))
  (inline-letevals (self)
    (inline-quote
     (-> ,self
         (treemacs-project->position)
         (treemacs-button-end)
         (next-single-property-change :project)
         (null)))))