(no title)
n0w | 1 year ago
I can't remember the specifics for why fields cannot be used within a Go interface but I do remember missing it a few times while writing Go code.
n0w | 1 year ago
I can't remember the specifics for why fields cannot be used within a Go interface but I do remember missing it a few times while writing Go code.
fwip|1 year ago
Struct field access is cheap, hopping through a dynamic dispatch table is less cheap.
rtpg|1 year ago