Explore >> Select a destination


You are here

rselbach.com
| | www.integralist.co.uk
14.8 parsecs away

Travel
| | The following code doesn't do what you might expect: package main import "fmt" func main() { var i *impl fmt.Println("i == nil:", i == nil) what(i) } type impl struct{} func (i *impl) do() {} func what(i interface{ do() }) { fmt.Println("i == nil:", i == nil) } If you expected the what function to print i == nil: true, then keep reading... Typed Nils The behavior observed is due to the way interfaces and nil values interact in Go.
| | quii.dev
14.4 parsecs away

Travel
| | Chris James, London - Software Engineer
| | www.cppstories.com
20.2 parsecs away

Travel
| | From dynamic container operations to compile-time constants, C++ offers a variety of techniques (as in this famous Meme :)). In this article, we'll delve into advanced initialization methods likereserve() and emplace_backfor containers to tuples with piecewise_construct and forward_as_tuple. Thanks to those techniques, we can reduce the number of temporary objects and create variables more efficiently.
| | www.poberezkin.com
100.9 parsecs away

Travel
| Evgeny Poberezkin's blog