On Friday, May 12, 2017 at 4:39:54 AM UTC-6, Steve Mynott wrote:
>
> What parts of the go stdlib are particularly useful for self education 
> in general go? 
>

It's been a while since I looked, but I recall image/png 
<https://golang.org/pkg/image/png/> (or any of its file-format siblings) 
and its dependencies, image <https://golang.org/pkg/image/> and image/color 
<https://golang.org/pkg/image/color/>, being helpfui for understanding when 
to use interfaces and when to use concrete types when implementing a set of 
interrelated abstractions (in this case, various image formats that can be 
encoded, decoded, and manipulated with most of the implementation details 
hidden).

― Scott

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to