Skip to main content

Module named

Module named 

Source
Expand description

NamedList โ€” O(1) name-indexed access to R lists.

Wraps a List and builds a HashMap<String, usize> index on construction. Use when accessing multiple elements by name from the same list โ€” each lookup is O(1) instead of O(n).

Structsยง

NamedList
A named list with O(1) name-based element lookup.