if(iterator!=lineStop.getSchedule().cbegin()&&iterator!=lineStop.getSchedule().cend()){//Iterator is invalid if it points to schedule end (no result) or begin (no result lower than our constraint)
if(iterator!=lineStop.getSchedule().cbegin()){//Iterator is invalid if it points to schedule beginning (no result lower than our constraint)
--iterator;//Move iterator to the value that's under our max entry constraint
if(*iterator>maxDepartureTime//If we've found a valid time that's superior to our current max time
&&*iterator>getMinEntryConstraint(baseRequest,bestStationNodeIdx)){//and respects min entry time, replace old value