Skip to content

Commit 3469a64

Browse files
authored
Update README.md
1 parent 9f96055 commit 3469a64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
*Reflection Template Library (RTL)* is a lightweight C++ runtime reflection library that enables introspection and dynamic manipulation of ***Types*** — allowing you to access, modify, and invoke objects at runtime without compile-time type knowledge.
44

5-
RTL is implemented as a static library that organizes type-safe function pointers into tables `(std::vector)`, with each pointer wrapped in a lambda. This design enables constant-time `O(1)` lookup and efficient runtime access.
5+
RTL is implemented as a *static library* that organizes function pointers into `std::vector` tables, with each functor wrapped in a lambda. This design enables constant-time (`O(1)`) lookups while ensuring type-safe and efficient runtime access.
66

77
[![CMake](https://img.shields.io/badge/CMake-Enabled-brightgreen)](https://cmake.org)
88
[![C++20](https://img.shields.io/badge/C++-20-blue)](https://isocpp.org)

0 commit comments

Comments
 (0)