|
|
|
|
|
by robotastronaut
1520 days ago
|
|
Method chaining, while possible, isn’t something I’d say is really encouraged in Go. Returned values should be handled explicitly. There are plenty of cases where it could be fine, but if a function can error, you wouldn’t want to chain anyways. |
|