What is Nostr?
Anders Eknert /
npub1vlq…t29d
2025-01-14 11:56:50

Anders Eknert on Nostr: My new favorite #golang discovery is `cmp.Or` to assign default values. Instead of: ...

My new favorite #golang discovery is `cmp.Or` to assign default values. Instead of:
```
v := version.Version
if v == "" {
v = "unknown"
}
```
do:
```
v := cmp.Or(version.Version, "unknown")
```
With the or-condition triggered by the zero-value for the first arg. Neat!
Author Public Key
npub1vlqe0m9uhqzarheccl4a4ur7ey46qf7c4a52wfj7kyyvr39e79zsn8t29d