Absolute must be constructed via ParseAbsolute, or other methods in this package. The zero value of Absolute will panic when String is called.
| 9 | // Absolute must be constructed via ParseAbsolute, or other methods in this package. |
| 10 | // The zero value of Absolute will panic when String is called. |
| 11 | type Absolute struct { |
| 12 | path string |
| 13 | } |
| 14 | |
| 15 | // ParseAbsolute takes a string path that may be relative and returns |
| 16 | // an Absolute that is guaranteed to be absolute, or an error. |
nothing calls this directly
no outgoing calls
no test coverage detected