Warning: Due to various recent migrations, viewing non-HEAD refs may be broken.
/ds/map/rbtree/new.ha (raw)
// Creates a new [[map]]. export fn new() (*map | nomem) = { let m = alloc(map { vt = &_vt, root = null, })?; return m; };