[#BloombergLP-bslstl-BoyerMooreHorspoolSearcher_CharImp-2constructor-04] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslstl.adoc[bslstl]::xref:BloombergLP/bslstl/BoyerMooreHorspoolSearcher_CharImp.adoc[BoyerMooreHorspoolSearcher_CharImp]::BoyerMooreHorspoolSearcher_CharImp :relfileprefix: ../../../ :mrdocs: Create a `BoyerMooreHorspoolSearcher_CharImp` object for the sequence of `char` values in the specified range `[needleFirst, needlelast)]`. This implementation is invoked when the specified `hash` is `bsl::hash<char>` and the specified `equal` is `bsl::equal_to<char>`. Neither functor is used because for the special case of `char` the needle metadata is maintained in a fixed size array (256 elements). As always, the specified `basicAllocator` is used to supply memory. If `basicAllocator` is 0, the currently installed default allocator is used. The behavior is undefined unless `needleFirst` can be advanced to `needleLast`. == Synopsis Declared in `<bslstl_boyermoorehorspoolsearcher.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- BoyerMooreHorspoolSearcher_CharImp( RNDACC_ITR_NEEDLE needleFirst, RNDACC_ITR_NEEDLE needleLast, HASH hash, EQUAL equal, xref:BloombergLP/bslma/Allocator.adoc[BloombergLP::bslma::Allocator]* basicAllocator); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#