String is the same as Print but defaulting to pretty=false.
(routes ...*Route)
| 209 | |
| 210 | // String is the same as Print but defaulting to pretty=false. |
| 211 | func String(routes ...*Route) string { |
| 212 | return Print(PrettyPrintInfo{Pretty: false, IndentStr: ""}, routes...) |
| 213 | } |
| 214 | |
| 215 | // Print serializes a set of routes into a string. If there's only a |
| 216 | // single route, and its ID is not set, it prints only a route expression. |
searching dependent graphs…