I can use low or high on actual variables, but can this be done on objects directly?
var aaa: TTimeInfo echo high(aaa.year) # -> ok echo high(TTimeInfo.year) # -> Error: undeclared identifier: 'year' Run
var aaa: TTimeInfo echo high(aaa.year) # -> ok echo high(TTimeInfo.year) # -> Error: undeclared identifier: 'year'