Get the maximum number of items expected to be returned and used for the callback
| 4002 | |
| 4003 | /// Get the maximum number of items expected to be returned and used for the callback |
| 4004 | int get_items_expected_max() const { |
| 4005 | int t = type_size_max_; |
| 4006 | return detail::checked_multiply(t, expected_max_) ? t : detail::expected_max_vector_size; |
| 4007 | } |
| 4008 | /// The total min number of expected string values to be used |
| 4009 | int get_items_expected() const { return get_items_expected_min(); } |
| 4010 |
no test coverage detected