Look into refactoring the passing of arrays #17
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
From: https://mastodon.nl/@0xZogG@hachyderm.io/113897461146920302
I am looking into this comment.
First instance is:
This eventually calls:
Which finally call down the line:
Looking at it, I never really pass arrays. I pass values in said arrays. But this is the
blocks
arrays which forms a reference to all possible rows. I could make this look nicer by chucking them all 9 references/indexes into an array, and unpacking it in the function being called.Looking at https://go.dev/doc/effective_go#functions and https://go-proverbs.github.io/, I think I'm good.