Live data from Hacker News

Easy sorting in Go

github.com

1–5 of 5 posts

Re: Easy sorting in Go

#4
Yeah, OO interface for sort from Go's standard library is crap. But why reflect and all that magic? I was expecting something based on function literals as a decent way to sort truly arbitrary data and not break context.

Re: Easy sorting in Go

#5
post #4

Yeah, OO interface for sort from Go's standard library is crap. But why reflect and all that magic? I was expecting something based on function literals as a decent way to sort truly arbitrary data and not break context.

Could you please get some example?