cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+4 -6
View File
@@ -18,11 +18,9 @@ Parses a URI into its component maps.
Example:
```uce
URI uri = parse_uri("https://example.test/docs/index.uce?q=uce#top");
String host = uri.parts["host"];
String path = uri.parts["path"];
String q = uri.query["q"];
```
Use `parse_uri()` when you need to inspect a full URL. Use `parse_query()` when you only have the query string.
:example
URI uri = parse_uri("https://example.test/docs?name=Ada");
print(uri.parts["path"], " ", uri.query["name"], "\n");