io_go1.6.go 271 B

1234567891011
  1. //go:build !go1.7
  2. // +build !go1.7
  3. package sdkio
  4. // Copy of Go 1.7 io package's Seeker constants.
  5. const (
  6. SeekStart = 0 // seek relative to the origin of the file
  7. SeekCurrent = 1 // seek relative to the current offset
  8. SeekEnd = 2 // seek relative to the end
  9. )