func readReport(in io.Reader) (*Report, error) { … }
type Report …
func (r *Report) Write(filename string) (err error) { … }
func (r *Report) ToString() (string, error) { … }
func (r *Report) encode(w io.Writer) error { … }
type VersionRange …
type Module …
type Package …
type Version …
func (v Version) V() string { … }
func (v Version) IsValid() bool { … }
func (v Version) Before(v2 Version) bool { … }
func (v Version) Canonical() string { … }
type Reference …
func (r *Reference) MarshalYAML() (interface{ … }
func (r *Reference) UnmarshalYAML(n *yaml.Node) (err error) { … }