Tagged Questions
1
vote
1answer
438 views
Container types in Golang
For a non-OOP language like google Go, is it idiomatic to go about implementing new container types using datatypes like arrays or lists so as to implement convenient functionality like contains ...
2
votes
3answers
870 views
Is Google's Go a type-safe language?
this page http://golang.org/doc/go_faq.html writes:
although Go has static types the
language attempts to make types feel
lighter weight than in typical OO
languages
So my question is ...