result-code.go 261 B

12345678
  1. package sqlite
  2. // ResultCode is an abstraction over what is exposed in crawshaw or zombiezen. For now the type
  3. // wraps the definitions there, but we add some extra common methods on top here.
  4. func (me ResultCode) ToPrimary() ResultCode {
  5. return me & 0xff
  6. }