This file is indexed.

/usr/share/gocode/src/github.com/ChrisTrenkamp/goxpath/tree/interfaces.go is in golang-github-christrenkamp-goxpath-dev 1.0~alpha3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
package tree

import "fmt"

//Result is used for all data types.
type Result interface {
	fmt.Stringer
}

//IsBool is used for the XPath boolean function.  It turns the data type to a bool.
type IsBool interface {
	Bool() Bool
}

//IsNum is used for the XPath number function.  It turns the data type to a number.
type IsNum interface {
	Num() Num
}