Example:
test = {"a" -> {{1}, 12}, "b" -> {13}}
I'd like to find all expressions in the list with this pattern:
_ -> {_,_}
The first element, "a" -> {{1}, 12}, is represented by this pattern.
However, none of these expressions work:
Cases[test,_->{_,_}], Cases[test,_->_], Cases[test,Rule[_,_]], etc.
Any advice would be appreciated.