gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

bitio.go (168B)


      1 package bitio
      2 
      3 import "errors"
      4 
      5 var (
      6 	ErrInvalidAlignment  = errors.New("invalid alignment")
      7 	ErrDiscouragedReader = errors.New("discouraged reader implementation")
      8 )