From 850302bbd8697c7cf43bc447a972531f91242d65 Mon Sep 17 00:00:00 2001 From: Nicolau Leal Werneck Date: Thu, 23 Jan 2025 19:29:10 +0100 Subject: [PATCH] add reference to time_ns in time --- base/libc.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base/libc.jl b/base/libc.jl index 7364f6e6677fe..fc0cc774cab7a 100644 --- a/base/libc.jl +++ b/base/libc.jl @@ -288,6 +288,8 @@ time(tm::TmStruct) = Float64(ccall(:mktime, Int, (Ref{TmStruct},), tm)) time() -> Float64 Get the system time in seconds since the epoch, with fairly high (typically, microsecond) resolution. + +See also [`time_ns`](@ref). """ time() = ccall(:jl_clock_now, Float64, ())