December 2018
Intermediate to advanced
500 pages
12h 19m
English
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Then you can enable it for remote invocation using the rpc package."
A block of code is set as follows:
type Args struct { A, B int}type MuliplyService struct{}func (t *Arith) Do(args *Args, reply *int) error { *reply = args.A * args.B return nil}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
type Args struct { A, B int}type MuliplyService struct{}func (t *Arith) Do(args *Args, reply *int) error { *reply ...Read now
Unlock full access