| 210 | |
| 211 | template <typename PrimitiveType> |
| 212 | PrimitiveType ArgumentList::get (size_t index, PrimitiveType defaultValue) const |
| 213 | { |
| 214 | if (auto a = (*this)[index]) |
| 215 | return a->getWithDefault<PrimitiveType> (defaultValue); |
| 216 | |
| 217 | return defaultValue; |
| 218 | } |
| 219 | |
| 220 | struct Context::Pimpl |
| 221 | { |
no outgoing calls
no test coverage detected