Matches the first output of a node that matches `node`.
| 212 | |
| 213 | // Matches the first output of a node that matches `node`. |
| 214 | inline ::testing::Matcher<impl::OutEdge> Out( |
| 215 | ::testing::Matcher<const Node*> node) { |
| 216 | return Out(0, node); |
| 217 | } |
| 218 | |
| 219 | // Matches a node with control dependences `control_deps`. |
| 220 | // |