Files
Structive/core/README.zh-CN.md
T
2026-08-07 20:20:46 +08:00

12 lines
732 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Structive Property Core
`structive::property_core` 描述 Property 自身的固有结构,并提供 managed read/write、synchronization、traversal、validation metadata 和 type-erased runtime access。
Core 完全没有访问控制 mode。Property 只报告自身 intrinsic `readable` / `writable`;外部系统自己拥有 exposure 与 authorization policy。
Stored `read_only` Property 不分配 lock slot、不贡献 mutexmanaged read 直接走 no-lock fast path。
Runtime 与 synchronization 的边界契约分别由 `tests/runtime_api_test.cpp``tests/synchronization_test.cpp` 做独立回归测试。
详见 [Core 完整指南](../docs/CORE_GUIDE.zh-CN.md) 与 [设计理念](../docs/DESIGN.zh-CN.md)。