Toggle navigation
4
MINDS
Home
Sobre
Contato
Entrar
4
MINDS
4MINDS Gestão de Conhecimento
Go Lang Time - Date compare ignoring time
Publicado por
Ricardo Bocchi
, 1 de maio de 2023
Go lang
Geral
4858 Acessos
Baixar em PDF
Use
d := time.Now().Truncate(24*time.Hour)
other := time.Now().Truncate(24*time.Hour)
areEqual := other.Equal(d)
Or
d.Year() == other.Year() && d.YearDay() == other.YearDay()