This file is indexed.

/usr/share/gocode/src/github.com/tendermint/go-common/array.go is in golang-github-tendermint-go-common-dev 0~20161202~0gitf40b1b6-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
package common

func Arr(items ...interface{}) []interface{} {
	return items
}