Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions include/cuco/static_map.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -121,18 +121,12 @@ class static_map {
storage_ref_type,
Operators...>; ///< Non-owning container ref type

static_map() = delete;
static_map(static_map const&) = delete;
static_map& operator=(static_map const&) = delete;

static_map(static_map&&) = default; ///< Move constructor

/**
* @brief Replaces the contents of the container with another container.
*
* @return Reference of the current map object
*/
static_map& operator=(static_map&&) = default;
~static_map() = default;
static_map(static_map&&) = delete;
static_map& operator=(static_map&&) = delete;
~static_map() = default;

/**
* @brief Constructs a statically-sized map with the specified initial capacity, sentinel values
Expand Down
14 changes: 4 additions & 10 deletions include/cuco/static_multimap.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,12 @@ class static_multimap {
storage_ref_type,
Operators...>; ///< Non-owning container ref type

static_multimap() = delete;
static_multimap(static_multimap const&) = delete;
static_multimap& operator=(static_multimap const&) = delete;

static_multimap(static_multimap&&) = default; ///< Move constructor

/**
* @brief Replaces the contents of the container with another container.
*
* @return Reference of the current map object
*/
static_multimap& operator=(static_multimap&&) = default;
~static_multimap() = default;
static_multimap(static_multimap&&) = delete;
static_multimap& operator=(static_multimap&&) = delete;
~static_multimap() = default;

/**
* @brief Constructs a statically-sized map with the specified initial capacity, sentinel values
Expand Down
14 changes: 4 additions & 10 deletions include/cuco/static_multiset.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -99,18 +99,12 @@ class static_multiset {
storage_ref_type,
Operators...>; ///< Non-owning container ref type

static_multiset() = delete;
static_multiset(static_multiset const&) = delete;
static_multiset& operator=(static_multiset const&) = delete;

static_multiset(static_multiset&&) = default; ///< Move constructor

/**
* @brief Replaces the contents of the container with another container.
*
* @return Reference of the current multiset object
*/
static_multiset& operator=(static_multiset&&) = default;
~static_multiset() = default;
static_multiset(static_multiset&&) = delete;
static_multiset& operator=(static_multiset&&) = delete;
~static_multiset() = default;

/**
* @brief Constructs a statically-sized multiset with the specified initial capacity, sentinel
Expand Down
14 changes: 4 additions & 10 deletions include/cuco/static_set.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -104,18 +104,12 @@ class static_set {
storage_ref_type,
Operators...>; ///< Non-owning container ref type

static_set() = delete;
static_set(static_set const&) = delete;
static_set& operator=(static_set const&) = delete;

static_set(static_set&&) = default; ///< Move constructor

/**
* @brief Replaces the contents of the container with another container.
*
* @return Reference of the current set object
*/
static_set& operator=(static_set&&) = default;
~static_set() = default;
static_set(static_set&&) = delete;
static_set& operator=(static_set&&) = delete;
~static_set() = default;

/**
* @brief Constructs a statically-sized set with the specified initial capacity, sentinel values
Expand Down
Loading