|
|
|
|
|
by weberc2
2373 days ago
|
|
> Yes, it does. Whenever you call a function that can possibly fail, you are supposed to add:
if err != nil {
return err
} I don’t think that’s what the parent meant by his question. He was asking if you have to add runtime checks all over to make sure any reference type isn’t nil; no, you don’t—you only add the checks for those for which nil is a valid state in the program (such as errors). If it’s an invalid state, it will panic because it’s an exceptional circumstance—a programmer error. This isn’t a defense of nil; only a clarification about how nil is dealt with. With this context, the rest of his question (the part you didn’t understand) becomes clearer. |
|