in src/xalanc/Include/XalanMap.hpp [416:430]
size_type erase(const key_type& key)
{
const iterator pos = find(key);
if (pos != end())
{
doErase(pos);
return 1;
}
else
{
return 0;
}
}