#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_ROBIN_HOOD_MAP_INL_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_ROBIN_HOOD_MAP_INL_H_
#include "third_party/blink/renderer/core/css/robin_hood_map.h"
#include <algorithm>
#include "base/notreached.h"
namespace blink {
template <class Key, class Value>
typename RobinHoodMap<Key, Value>::Bucket*
RobinHoodMap<Key, Value>::InsertInternal(
RobinHoodMap<Key, Value>::Bucket to_insert) { … }
template <class Key, class Value>
typename RobinHoodMap<Key, Value>::Bucket* RobinHoodMap<Key, Value>::Insert(
const Key& key) { … }
template <class Key, class Value>
RobinHoodMap<Key, Value> RobinHoodMap<Key, Value>::Grow() { … }
template <class Key, class Value>
typename RobinHoodMap<Key, Value>::Bucket*
RobinHoodMap<Key, Value>::InsertWithRehashing(const Key& key) { … }
}
#endif