# Functions
NewLineTable returns a new PC/line table corresponding to the encoded data.
NewTable decodes the Go symbol table (the ".gosymtab" section in ELF), returning an in-memory representation.
# Structs
DecodingError represents an error during the decoding of the symbol table.
A Func collects information about a single function.
A LineTable is a data structure mapping program counters to line numbers.
An Obj represents a collection of functions in a symbol table.
A Sym represents a single symbol table entry.
Table represents a Go symbol table.
UnknownLineError represents a failure to map a line to a program counter, either because the line is beyond the bounds of the file or because there is no code on the given line.
# Type aliases
UnknownFileError represents a failure to find the specific file in the symbol table.