| 24 | } |
| 25 | |
| 26 | bool Bundle::hasInt32(const std::string& key) const { |
| 27 | auto entry = this->entries.find(key); |
| 28 | return entry != std::end(this->entries) && entry->second.type == Type::Int32; |
| 29 | } |
| 30 | |
| 31 | bool Bundle::hasInt64(const std::string& key) const { |
| 32 | auto entry = this->entries.find(key); |