Function: cperl--time-convert
cperl--time-convert is a function alias for time-convert, defined in
timefns.c.
Signature
(cperl--time-convert TIME &optional FORM)
Documentation
Convert TIME value to a Lisp timestamp of the given FORM.
Truncate the returned value toward minus infinity.
If FORM is a positive integer, return a pair of integers (TICKS . FORM), where TICKS is the number of clock ticks and FORM is the clock frequency in ticks per second.
If FORM is t, return (TICKS . PHZ), where PHZ is a suitable clock frequency in ticks per second.
If FORM is integer, return an integer count of seconds.
If FORM is list, return an integer list (HIGH LOW USEC PSEC), where
HIGH has the most significant bits of the seconds, LOW has the least
significant 16 bits, and USEC and PSEC are the microsecond and
picosecond counts.
If FORM is nil, the behavior depends on current-time-list,
but new code should not rely on it.
Aliases
cperl--time-convert
timeclock-seconds-to-time (obsolete since 26.1)