| 19 | } |
| 20 | |
| 21 | bool Bundle::hasBool(const std::string& key) const { |
| 22 | auto entry = this->entries.find(key); |
| 23 | return entry != std::end(this->entries) && entry->second.type == Type::Bool; |
| 24 | } |
| 25 | |
| 26 | bool Bundle::hasInt32(const std::string& key) const { |
| 27 | auto entry = this->entries.find(key); |