const IntPtr ctip4, const-pointer-to-int, const int * cip --const-int. , .
/ cip
int * const cip = new int;
, const MyType * ( , , , , MyType ), const_casting , :
#include <map>
int main()
{
const int * cpi = some_func();
std::map<const int *, int> const_int_ptr_map;
const_int_ptr_map.find(cpi);
std::map<int *, int> int_ptr_map;
int_ptr_map.find(const_cast<int *>(cpi));
}