When my proof state is of the form
H -> goal
I often use the pattern
intros H. *some tactic* H.
where some tactic could be "inversion" or "apply _ in", etc. It would be nice if there was some tactical which combined these two steps, ie, something which would introduce the top hypothesis and then apply a specified tactic to it. I've looked around in the ssreflect documentation for move, because move can do similar useful things, but haven't found anything. Is there such a tactical?
Thanks.