Function: f-same-time-p

f-same-time-p is a byte-compiled function defined in f.el.

Signature

(f-same-time-p FILE OTHER &optional METHOD)

Documentation

Check if FILE and OTHER share the same access or modification time.

For more info on METHOD, see f--date-compare.

Aliases

f-same-time?

Source Code

;; Defined in ~/.emacs.d/elpa/f-20241003.1131/f.el
(defun f-same-time-p (file other &optional method)
  "Check if FILE and OTHER share the same access or modification time.

For more info on METHOD, see `f--date-compare'."
  (= (f--date-compare file other method) 0))