http urls monitor.

position.go 744B

123456789101112131415161718192021222324252627282930
  1. // Position support for go-toml
  2. package toml
  3. import (
  4. "fmt"
  5. )
  6. // Position of a document element within a TOML document.
  7. //
  8. // Line and Col are both 1-indexed positions for the element's line number and
  9. // column number, respectively. Values of zero or less will cause Invalid(),
  10. // to return true.
  11. type Position struct {
  12. Line int // line within the document
  13. Col int // column within the line
  14. }
  15. // String representation of the position.
  16. // Displays 1-indexed line and column numbers.
  17. func (p Position) String() string {
  18. return fmt.Sprintf("(%d, %d)", p.Line, p.Col)
  19. }
  20. // Invalid returns whether or not the position is valid (i.e. with negative or
  21. // null values)
  22. func (p Position) Invalid() bool {
  23. return p.Line <= 0 || p.Col <= 0
  24. }