Daniel Frederick Crisman

Results 25 issues of Daniel Frederick Crisman

In "Exercise: Equivalent Binary Trees" neither the slide text nor the code state Walk() should send the values in order. Doing so in order makes using the output much more...

The first slide of generics (about generic functions) never uses the phrase "generic function". Adding to the confusion, the next slide (generics/2) then says "In addition to generic functions..." as...

The code example in basics/7 (named-results.go) is confusing on many levels. The return values are not descriptive, thus offer no understanding of what function does. The paramater name (sum) seems...

Interfaces do not define func as in the current text of "Readers" ("/tour/methods/21"). The interface specifies a list of methods, just Read() in this case. It is confusing to say...

Between 'map-literals.go' and 'map-literals-continued.go' there are four changes (omit element type, single line the block, add space to align the "Google" element, and remove the terminal comma in the block)...