BloombergLP::bslmf::IsPointer

This struct template implements a meta-function to determine if the (template parameter) t_TYPE is a pointer type. This struct derives from bsl::true_type if the t_TYPE is a pointer type (but not a pointer to non-static member), and bsl::false_type otherwise.

Synopsis

Declared in <bslmf_ispointer.h>

template<class t_TYPE>
struct IsPointer
    : bsl::is_pointer<t_TYPE>::type

Description

Note that this struct is functionally equivalent to bsl::is_pointer, and the use of bsl::is_pointer should be preferred.

Base Classes

NameDescription
bsl::is_pointer<t_TYPE>::type