This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.
Let's understand this with log structure example. A commit log is just an append-only slice // at its heart, this is all a log is type Log struct { records []string } func (l *Log) Append(record string) { l.records = append(l.records, record) } func (l *Log) Read(index int) string
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.