1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

time: implement pub fn since(t Time) Duration

This commit is contained in:
Delyan Angelov
2021-10-24 21:36:28 +03:00
parent bb71089b70
commit 49ebba535e
2 changed files with 13 additions and 4 deletions

View File

@ -121,10 +121,9 @@ pub fn (t Time) add_days(days int) Time {
return t.add(days * 24 * time.hour)
}
// since returns a number of seconds elapsed since a given time.
fn since(t Time) int {
// TODO Use time.Duration instead of seconds
return 0
// since returns the time duration elapsed since a given time.
pub fn since(t Time) Duration {
return now() - t
}
// relative returns a string representation of the difference between t