Some Namespace tweaks
First addition, using double-dot notation like "ns ../a". Second addition, using '+' to append paths to the current namespace, like "ns +b".task id: dagzet-namespace-tweaks
2024-12-09 13:04: I need to add dots notation to namespaces, I need more brevity in the syntax #dagzet-namespace-tweaks
2024-12-09 13:18: Found out a better way to unwrap reference to namespace in dagzet using =as_ref()= #dz:rust/as_ref #dagzet-namespace-tweaks
2024-12-09 13:42: Using get() with is how you can get substrings of slices in Rust #dz:rust/string/get #dagzet-namespace-tweaks
Context: needed to get "name" from "+name". in Dagzet Can be done with something like label.get(1..).unwrap().
Before, I was using a match statment in an Optional type. But, instead you can do:
= #+BEGINref().unwrap(); #+END_SRC
= used Claude to figure this one out.