* Convenience method accessing the node directly before the argument. */
| 634 | * Convenience method accessing the node directly before the argument. |
| 635 | */ |
| 636 | inline Route::Node *p(Route::Node *node) |
| 637 | { |
| 638 | auto &route = *node->route(); |
| 639 | return route[node->idx() - 1]; |
| 640 | } |
| 641 | |
| 642 | inline Route::Node const *p(Route::Node const *node) |
| 643 | { |
no test coverage detected