uce/site/doc/pages/dv_omit.txt
2026-06-15 11:04:16 +00:00

27 lines
896 B
Plaintext

:title
dv_omit
:sig
DValue dv_omit(DValue tree, StringList keys)
:see
StringList
0_DValue
filter
:content
Copies a DValue map except for selected keys.
These helpers keep common data-shaping code close to render code, routers, and configuration trees. They are useful for route lists, navigation items, cards, and records that need simple transformations before rendering.
```cpp
DValue safe_user = dv_omit(user, {"password_hash"});
```
Prefer these helpers over open-coded loops when the transformation itself is the important part of the code. Use an explicit loop when mutation, error handling, or side effects are the main concern.
## Related Concepts
- JavaScript / React: `Array.map`, `Array.filter`, `Array.find`, object `pick`/`omit`, and grouping route or navigation records before rendering.
- PHP: `array_map`, `array_filter`, `array_unique`, and associative array projection.