* @brief Remove a specific member in the object by key. * @param key string view that contains key's pointer and size * @retval true success * @retval false failed */
| 805 | * @retval false failed |
| 806 | */ |
| 807 | sonic_force_inline bool RemoveMember(StringView key) noexcept { |
| 808 | return downCast()->removeMemberImpl(key); |
| 809 | } |
| 810 | |
| 811 | /** |
| 812 | * @brief Remove specific range [first, last) in an object |
nothing calls this directly
no test coverage detected