Is there a way to pattern match smart constructors, outside of its module?
Something like this:
import MyModule (thing)
fn (thing 3) = True
without being able to write this:
fn (Thing 3) = True
where thing
is a smart constructor for Thing
.