| from .utility cimport pair
|
|
|
| cdef extern from "<unordered_map>" namespace "std" nogil:
|
| cdef cppclass unordered_map[T, U, HASH=*, PRED=*, ALLOCATOR=*]:
|
| ctypedef T key_type
|
| ctypedef U mapped_type
|
| ctypedef pair[const T, U] value_type
|
| ctypedef ALLOCATOR allocator_type
|
|
|
|
|
|
|
|
|
| ctypedef size_t size_type
|
| ctypedef ptrdiff_t difference_type
|
|
|
| cppclass iterator
|
| cppclass iterator:
|
| iterator() except +
|
| iterator(iterator&) except +
|
|
|
|
|
| pair[T, U]& operator*()
|
| iterator operator++()
|
| iterator operator--()
|
| iterator operator++(int)
|
| iterator operator--(int)
|
| bint operator==(iterator)
|
| bint operator==(const_iterator)
|
| bint operator!=(iterator)
|
| bint operator!=(const_iterator)
|
| cppclass const_iterator:
|
| const_iterator() except +
|
| const_iterator(iterator&) except +
|
| operator=(iterator&) except +
|
|
|
|
|
| const pair[T, U]& operator*()
|
| const_iterator operator++()
|
| const_iterator operator--()
|
| const_iterator operator++(int)
|
| const_iterator operator--(int)
|
| bint operator==(iterator)
|
| bint operator==(const_iterator)
|
| bint operator!=(iterator)
|
| bint operator!=(const_iterator)
|
|
|
| unordered_map() except +
|
| unordered_map(unordered_map&) except +
|
|
|
| U& operator[](const T&)
|
|
|
| bint operator==(unordered_map&, unordered_map&)
|
| bint operator!=(unordered_map&, unordered_map&)
|
| bint operator<(unordered_map&, unordered_map&)
|
| bint operator>(unordered_map&, unordered_map&)
|
| bint operator<=(unordered_map&, unordered_map&)
|
| bint operator>=(unordered_map&, unordered_map&)
|
| U& at(const T&) except +
|
| const U& const_at "at"(const T&) except +
|
| iterator begin()
|
| const_iterator const_begin "begin"()
|
| const_iterator cbegin()
|
| void clear()
|
| size_t count(const T&)
|
| bint empty()
|
| iterator end()
|
| const_iterator const_end "end"()
|
| const_iterator cend()
|
| pair[iterator, iterator] equal_range(const T&)
|
| pair[const_iterator, const_iterator] const_equal_range "equal_range"(const T&)
|
| iterator erase(iterator)
|
| iterator const_erase "erase"(const_iterator)
|
| iterator erase(const_iterator, const_iterator)
|
| size_t erase(const T&)
|
| iterator find(const T&)
|
| const_iterator const_find "find"(const T&)
|
| pair[iterator, bint] insert(const pair[T, U]&) except +
|
| iterator insert(const_iterator, const pair[T, U]&) except +
|
| void insert[InputIt](InputIt, InputIt) except +
|
|
|
| iterator lower_bound(const T&)
|
| const_iterator const_lower_bound "lower_bound"(const T&)
|
| size_t max_size()
|
| size_t size()
|
| void swap(unordered_map&)
|
| iterator upper_bound(const T&)
|
| const_iterator const_upper_bound "upper_bound"(const T&)
|
|
|
| void max_load_factor(float)
|
| float max_load_factor()
|
| float load_factor()
|
| void rehash(size_t)
|
| void reserve(size_t)
|
| size_t bucket_count()
|
| size_t max_bucket_count()
|
| size_t bucket_size(size_t)
|
| size_t bucket(const T&)
|
|
|
| bint contains(const T&)
|
|
|
| cdef cppclass unordered_multimap[T, U, HASH=*, PRED=*, ALLOCATOR=*]:
|
| ctypedef T key_type
|
| ctypedef U mapped_type
|
| ctypedef pair[const T, U] value_type
|
| ctypedef ALLOCATOR allocator_type
|
|
|
|
|
|
|
|
|
| ctypedef size_t size_type
|
| ctypedef ptrdiff_t difference_type
|
|
|
| cppclass const_iterator
|
| cppclass iterator:
|
| iterator() except +
|
| iterator(iterator&) except +
|
|
|
|
|
| pair[T, U]& operator*()
|
| iterator operator++()
|
| iterator operator++(int)
|
| bint operator==(iterator)
|
| bint operator==(const_iterator)
|
| bint operator!=(iterator)
|
| bint operator!=(const_iterator)
|
| cppclass const_iterator:
|
| const_iterator() except +
|
| const_iterator(iterator&) except +
|
| operator=(iterator&) except +
|
|
|
|
|
| const pair[T, U]& operator*()
|
| const_iterator operator++()
|
| const_iterator operator++(int)
|
| bint operator==(iterator)
|
| bint operator==(const_iterator)
|
| bint operator!=(iterator)
|
| bint operator!=(const_iterator)
|
|
|
| unordered_multimap() except +
|
| unordered_multimap(const unordered_multimap&) except +
|
|
|
|
|
| bint operator==(const unordered_multimap&, const unordered_multimap&)
|
| bint operator!=(const unordered_multimap&, const unordered_multimap&)
|
| bint operator<(const unordered_multimap&, const unordered_multimap&)
|
| bint operator>(const unordered_multimap&, const unordered_multimap&)
|
| bint operator<=(const unordered_multimap&, const unordered_multimap&)
|
| bint operator>=(const unordered_multimap&, const unordered_multimap&)
|
| iterator begin()
|
| const_iterator const_begin "begin"()
|
| const_iterator cbegin()
|
|
|
|
|
| void clear()
|
| size_t count(const T&)
|
| bint empty()
|
| iterator end()
|
| const_iterator const_end "end"()
|
| const_iterator cend()
|
|
|
|
|
| pair[iterator, iterator] equal_range(const T&)
|
| pair[const_iterator, const_iterator] const_equal_range "equal_range"(const T&)
|
| iterator erase(iterator)
|
| iterator const_erase "erase"(const_iterator)
|
| iterator erase(const_iterator, const_iterator)
|
| size_t erase(const T&)
|
| iterator find(const T&)
|
| const_iterator const_find "find"(const T&)
|
| iterator insert(const pair[T, U]&) except +
|
| iterator insert(const_iterator, const pair[T, U]&) except +
|
| void insert[InputIt](InputIt, InputIt) except +
|
|
|
| iterator lower_bound(const T&)
|
| const_iterator const_lower_bound "lower_bound"(const T&)
|
| size_t max_size()
|
| size_t size()
|
| void swap(unordered_multimap&)
|
| iterator upper_bound(const T&)
|
| const_iterator const_upper_bound "upper_bound"(const T&)
|
|
|
| void max_load_factor(float)
|
| float max_load_factor()
|
| float load_factor()
|
| void rehash(size_t)
|
| void reserve(size_t)
|
| size_t bucket_count()
|
| size_t max_bucket_count()
|
| size_t bucket_size(size_t)
|
| size_t bucket(const T&)
|
|
|
| bint contains(const T&)
|
|
|