this post was submitted on 21 Jun 2023
8 points (100.0% liked)

Go programming language discussion

1280 readers
1 users here now

founded 5 years ago
MODERATORS
 

Go 1.21 release candidate is available.

It has some interesting changes in my opinion:

  • clear() for clearing maps
  • new slices package for common operations on slices
  • new maps package for cloning and comparing maps

And some somewhat interesting ones:

  • min/max function directly in the language without a package (could have easily been in math package, but then again, you can min/max strings with this?)
  • structured logging package

Some other optimizations and improvements.

What do you think?

top 4 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 1 year ago

could have easily been in math package

Not easily while not avoiding the allocation hit of variadic arguments. But funny that, after all these years waiting on parametric polymorphism to be able to add a generalized min/max, it ends up as a built-in anyway.

[–] vegasq 1 points 1 year ago

clear I can understand, but min/max feels wrong.

[–] [email protected] 1 points 1 year ago

I'm excited for min/max and for log/slog!

[–] [email protected] 1 points 11 months ago* (last edited 11 months ago)

Wow super excited about slices package! Very nice quality of life addition.

load more comments
view more: next ›