chromium/third_party/blink/renderer/core/css/robin_hood_map-inl.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

// Inline definitions for robin_hood_map.h.

#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) {}

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_ROBIN_HOOD_MAP_INL_H_