isNull overloads
Declared in <bdlc_hashtable.h>
Same as the preceding overload for C-string buckets.
static
bool
isNull(ConstCharPtr const& bucket);
» more...
Same as the preceding overload for bsl::string buckets.
static
bool
isNull(bsl::string const& bucket);
» more...
Return true if the specified bucket has a null value, and false otherwise.
template<class BUCKET>
static
bool
isNull(BUCKET const& bucket);
» more...
Same as the preceding overload for key/value pair buckets.
template<
class KEY,
class VALUE>
static
bool
isNull(bsl::pair<KEY, VALUE> const& bucket);
» more...
true if bucket is null, and false otherwise
| Name | Description |
|---|---|
| bucket | bucket to test for a null value |