blob: 2c120285604374605c66e1d214bbea8a41ae7808 [file] [log] [blame]
package client // OMIT
func proc(it Iterator) (ret time.Duration) {
d := it.DurationAt()
if d == duration.Unterminated { // HL
ret = -1
} else {
ret = d
}
// some code
}