[#BloombergLP-bslstl-HashTableBucketIterator-2constructor-0c] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslstl.adoc[bslstl]::xref:BloombergLP/bslstl/HashTableBucketIterator.adoc[HashTableBucketIterator]::HashTableBucketIterator :relfileprefix: ../../../ :mrdocs: Constructors == Synopses Declared in `<bslstl_hashtablebucketiterator.h>` Create a default‐constructed iterator referring to an empty list of nodes. All default‐constructed iterators are non‐dereferenceable and refer to the same empty list. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bslstl/HashTableBucketIterator/2constructor-0e.adoc[HashTableBucketIterator](); ---- [.small]#xref:BloombergLP/bslstl/HashTableBucketIterator/2constructor-0e.adoc[_» more..._]# Create an iterator at the same position as the specified `original` iterator. Note that this constructor enables converting from modifiable to `const` iterator types. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bslstl/HashTableBucketIterator/2constructor-02.adoc[HashTableBucketIterator](xref:BloombergLP/bslstl/HashTableBucketIterator.adoc[NonConstIter] const& original); ---- [.small]#xref:BloombergLP/bslstl/HashTableBucketIterator/2constructor-02.adoc[_» more..._]# Create an iterator referring to the specified `bucket`, initially pointing to the first node in that `bucket`, or a past‐the‐end value if the `bucket` is empty. Note that this constructor is an implementation detail and is not part of the C++ standard. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:BloombergLP/bslstl/HashTableBucketIterator/2constructor-00.adoc[HashTableBucketIterator](xref:BloombergLP/bslalg/HashTableBucket.adoc[bslalg::HashTableBucket] const* bucket); ---- [.small]#xref:BloombergLP/bslstl/HashTableBucketIterator/2constructor-00.adoc[_» more..._]# Create an iterator referring to the specified `bucket`, initially pointing to the specified `node` in that bucket. The behavior is undefined unless `node` is part of `bucket`, or `node` is 0. Note that this constructor is an implementation detail and is not part of the C++ standard. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:BloombergLP/bslstl/HashTableBucketIterator/2constructor-03.adoc[HashTableBucketIterator]( xref:BloombergLP/bslalg/BidirectionalLink.adoc[bslalg::BidirectionalLink]* node, xref:BloombergLP/bslalg/HashTableBucket.adoc[bslalg::HashTableBucket] const* bucket); ---- [.small]#xref:BloombergLP/bslstl/HashTableBucketIterator/2constructor-03.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#