Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::unordered_multimap<Key,T,Hash,KeyEqual,Allocator>::extract

      From cppreference.com
      <cpp‎ |container‎ |unordered multimap

      [edit template]
       
       
       
      std::unordered_multimap
      Member types
      Member functions
      Non-member functions
      Deduction guides(C++17)
       
      node_type extract( const_iterator pos);
      (1)(since C++17)
      (constexpr since C++26)
      node_type extract(const Key& k);
      (2)(since C++17)
      (constexpr since C++26)
      template<class K>
      node_type extract( K&& x);
      (3)(since C++23)
      (constexpr since C++26)
      1) Unlinks the node that contains the element pointed to bypos and returns anode handle that owns it.
      2,3) If the container has an element with key equivalent tok orx(since C++23), unlinks the node that contains the first such element from the container and returns anode handle that owns it. Otherwise, returns an empty node handle.
      3) This overload participates in overload resolution only ifHash andKeyEqual are bothtransparent, and neitheriterator norconst_iterator is implicitly convertible fromK. This assumes that suchHash is callable with bothK andKey type, and that theKeyEqual is transparent, which, together, allows calling this function without constructing an instance ofKey.

      In either case, no elements are copied or moved, only the internal pointers of the container nodes are repointed .

      Extracting a node invalidates only the iterators to the extracted element, and preserves the relative order of the elements that are not erased. Pointers and references to the extracted element remain valid, but cannot be used while element is owned by a node handle: they become usable if the element is inserted into a container.

      Contents

      [edit]Parameters

      pos - a valid iterator into this container
      k - a key to identify the node to be extracted
      x - a value of any type that can be transparently compared with a key identifying the node to be extracted

      [edit]Return value

      Anode handle that owns the extracted element, or empty node handle in case the element is not found in(2,3).

      [edit]Exceptions

      1) Throws nothing.
      2,3) Any exceptions thrown by theHash andKeyEqual object.

      [edit]Complexity

      1-3) Average case O(1), worst case O(size()).

      [edit]Notes

      extract is the only way to change a key of a map element without reallocation:

      std::map<int,std::string> m{{1,"mango"},{2,"papaya"},{3,"guava"}};auto nh= m.extract(2);nh.key()=4;m.insert(std::move(nh));// m == {{1, "mango"}, {3, "guava"}, {4, "papaya"}}
      Feature-test macroValueStdFeature
      __cpp_lib_associative_heterogeneous_erasure202110L(C++23)Heterogeneous erasure inassociative containers andunordered associative containers,(3)

      [edit]Example

      Run this code
      #include <algorithm>#include <iostream>#include <string_view>#include <unordered_map> void print(std::string_view comment,constauto& data){std::cout<< comment;for(auto[k, v]: data)std::cout<<' '<< k<<'('<< v<<')'; std::cout<<'\n';} int main(){std::unordered_multimap<int,char> cont{{1,'a'},{2,'b'},{3,'c'}};     print("Start:", cont); // Extract node handle and change keyauto nh= cont.extract(1);    nh.key()=4;     print("After extract and before insert:", cont); // Insert node handle back    cont.insert(std::move(nh));     print("End:", cont);}

      Possible output:

      Start: 1(a) 2(b) 3(c)After extract and before insert: 2(b) 3(c)End: 2(b) 3(c) 4(a)

      [edit]See also

      (C++17)
      splices nodes from another container
      (public member function)[edit]
      inserts elementsor nodes(since C++17)
      (public member function)[edit]
      erases elements
      (public member function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/container/unordered_multimap/extract&oldid=134476"

      [8]ページ先頭

      ©2009-2025 Movatter.jp