| 2094 | } |
| 2095 | |
| 2096 | int32_t ReflectionStructType::getMemberIndex(std::string_view name) const |
| 2097 | { |
| 2098 | auto it = mNameToIndex.find(name); |
| 2099 | if (it == mNameToIndex.end()) |
| 2100 | return kInvalidMemberIndex; |
| 2101 | return it->second; |
| 2102 | } |
| 2103 | |
| 2104 | const ref<const ReflectionVar>& ReflectionStructType::getMember(std::string_view name) const |
| 2105 | { |