uri

uri
(
string scheme
,
string authority
,
string path
,
string query
,
string fragment
)

Examples

assert(uri("file", null, "/home/foo/bar.d", null, null) == "file:///home/foo/bar.d");
assert(uri("file", null, "/home/foo bar.d", null, null) == "file:///home/foo%20bar.d");

Meta