Function: f-root

f-root is a byte-compiled function defined in f.el.

Signature

(f-root)

Documentation

Return absolute root.

Other relevant functions are documented in the f group.

Shortdoc

;; f
(f-root)
    => "/"

Source Code

;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-root ()
  "Return absolute root."
  (f-traverse-upwards 'f-root-p))