Explicit API mode - I was surprised that I need to...
# compiler
e
Explicit API mode - I was surprised that I need to mark interface methods with explicit visibility also
👍 2
b
It is possible to have
private
functions (as long as they have a body) in an interface as well as
public
. Since there are multiple visibilities possible, it's best to be explicit, no?
e
Yeah, completely forgot about default methods