Array APIs * @brief Get array capacity. * @return size_t * @note If NodeType doesn't support, this function will return Size() */
| 825 | * @note If NodeType doesn't support, this function will return Size() |
| 826 | */ |
| 827 | size_t Capacity() const noexcept { |
| 828 | sonic_assert(this->IsContainer()); |
| 829 | return downCast()->capacityImpl(); |
| 830 | } |
| 831 | |
| 832 | /** |
| 833 | * @brief Get array =begin iterator |
no test coverage detected