tidyverse / hms

A simple class for storing time-of-day values
https://hms.tidyverse.org/
Other
138 stars 25 forks source link

hms support for boolean operations with strings (#108) #115

Open zWarMob opened 1 year ago

zWarMob commented 1 year ago

Description

The class hms can not be compared with strings

108

Expected behavior

hms(0,0,0) == "00:00:00"
#> [1] TRUE

Actual behavior

hms(0,0,0) == "00:00:00"
#> [1] FALSE