Sign in
go
/
talks
/
1da9fd3db1e42b86b8b1483ae1e6316053209bbd
/
.
/
2014
/
readability
/
in-band-error-client.go
blob: b2e13fc22ad247823036bc550fbc663527856e6c [
file
] [
log
] [
blame
]
// +build OMIT
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
}