bufio | Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O. |
cmd/internal/goobj | |
cmd/internal/sys | |
debug/dwarf | Package dwarf provides access to DWARF debugging information loaded from executable files, as defined in the DWARF 2.0 Standard at http://dwarfstd.org/doc/dwarf-2.0.0.pdf. |
debug/elf | Package elf implements access to ELF object files. |
debug/gosym | Package gosym implements access to the Go symbol and line number tables embedded in Go binaries generated by the gc compilers. |
debug/macho | Package macho implements access to Mach-O object files. |
debug/pe | Package pe implements access to PE (Microsoft Windows Portable Executable) files. |
debug/plan9obj | Package plan9obj implements access to Plan 9 a.out object files. |
encoding/binary | Package binary implements simple translation between numbers and byte sequences and encoding and decoding of varints. |
errors | Package errors implements functions to manipulate errors. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
golang.org/x/arch/arm/armasm | |
golang.org/x/arch/ppc64/ppc64asm | Package ppc64asm implements decoding of 64-bit PowerPC machine code. |
golang.org/x/arch/x86/x86asm | Package x86asm implements decoding of x86 machine code. |
io | Package io provides basic interfaces to I/O primitives. |
os | Package os provides a platform-independent interface to operating system functionality. |
regexp | Package regexp implements regular expression search. |
sort | Package sort provides primitives for sorting slices and user-defined collections. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
text/tabwriter | Package tabwriter implements a write filter (tabwriter.Writer) that translates tabbed columns in input into properly aligned text. |