Select a file to view its exact on-chain source. Sorted README → gnomod → sources → tests.
Render(path string) string
Signatures reconstructed verbatim from vm/qfuncs — interface params keep their inline definitions.
# Topological Sort
Ordering a dependency graph so nothing is built before what it needs, demoing the [`p/moul/x/daily/toposort`](/p/moul/x/daily/toposort/v0) library.
## The graph
```
avl <- strings
markdown <- strings
realm <- storage, ui
storage <- avl
strings
ui <- markdown
```
## Install order
1. `strings`
2. `avl`
3. `markdown`
4. `storage`
5. `ui`
6. `realm`
Ties are broken lexicographically, so this ordering is the *only* one the library will ever produce for this graph.
> See [`/cycle`](/r/moul/x/daily/toposortdemo/v0:cycle) for what happens when the graph is not a DAG.
vm/qrender output, sanitized (docs/render-security.md) and displayed in an empty-sandbox iframe — scripts, forms and popups cannot run. Links stay inert in-preview; right-click to open.