Checks if this date is strictly within a range (exclusive).
bool isStrictlyWithin(Hora start, Hora end) => isAfter(start) && isBefore(end);