| 220 | |
| 221 | template <typename PrimitiveType> |
| 222 | PrimitiveType ArgumentList::get (size_t index, PrimitiveType defaultValue) const |
| 223 | { |
| 224 | if (auto a = (*this)[index]) |
| 225 | return a->getWithDefault<PrimitiveType> (defaultValue); |
| 226 | |
| 227 | return defaultValue; |
| 228 | } |
| 229 | |
| 230 | struct Context::Pimpl |
| 231 | { |
no outgoing calls
no test coverage detected