Skip to content

Commit

Permalink
Revert multiset doc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Aug 8, 2024
1 parent 0105682 commit c081b0e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/cuco/detail/static_multiset/static_multiset_ref.inl
Original file line number Diff line number Diff line change
Expand Up @@ -495,8 +495,8 @@ class operator_impl<
* @brief Executes a callback on every element in the container with key equivalent to the probe
* key.
*
* @note Passes a copy of the element whose `key` matches with a key from the input key sequence
* to the callback.
* @note Passes an un-incrementable input iterator to the element whose key is equivalent to
* `key` to the callback.
*
* @tparam ProbeKey Input type which is convertible to 'key_type'
* @tparam CallbackOp Unary callback functor or device lambda
Expand All @@ -516,8 +516,8 @@ class operator_impl<
* @brief Executes a callback on every element in the container with key equivalent to the probe
* key.
*
* @note Passes a copy of the element whose `key` matches with a key from the input key sequence
* to the callback.
* @note Passes an un-incrementable input iterator to the element whose key is equivalent to
* `key` to the callback.
*
* @note This function uses cooperative group semantics, meaning that any thread may call the
* callback if it finds a matching element. If multiple elements are found within the same group,
Expand Down Expand Up @@ -547,8 +547,8 @@ class operator_impl<
* key and can additionally perform work that requires synchronizing the Cooperative Group
* performing this operation.
*
* @note Passes a copy of the element whose `key` matches with a key from the input key sequence
* to the callback.
* @note Passes an un-incrementable input iterator to the element whose key is equivalent to
* `key` to the callback.
*
* @note This function uses cooperative group semantics, meaning that any thread may call the
* callback if it finds a matching element. If multiple elements are found within the same group,
Expand Down

0 comments on commit c081b0e

Please sign in to comment.