integer.go 91 B

123456789
  1. package pg
  2. type Integer struct {
  3. Ival int64
  4. }
  5. func (n *Integer) Pos() int {
  6. return 0
  7. }