Hacker News new | ask | show | jobs
by pgporada 1244 days ago
Why isn't []int assignable to []interface{}? It's 6am and my brain hasn't kicked on yet.
1 comments

They have different runtime representations. []interface{} is a slice of fat pointers to interfaces.