You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In go creating a new instance of an object zeros its memory, so &Selection{} gives you &Selection{nil, nil, nil}. However, I can't see a way to ever set a value to the document attribute, making the selection useless.
As @githubnemo said, you could create a zero-value selection, but it wouldn't be very useful because there is no document available. What are you trying to do?
Can I use Select{nil, nil, nil} ?
The text was updated successfully, but these errors were encountered: