$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] Namespace for a Boost Hashing Library
From: Scott McMurray (me22.ca+boost_at_[hidden])
Date: 2010-05-09 12:32:22
On 9 May 2010 12:25, John Maddock <boost.regex_at_[hidden]> wrote:
>
> It seems like these are all natural allies to the stuff already in
> boost::hash, what's the issue in also using that name and extending the
> existing hash function library?
>
Sorry, I should have been more clear. boost::hash is a class template
like std::tr1::hash, not a namespace.
>From <boost/functional/hash/hash_fwd.hpp>:
namespace boost
{
template <class T> struct hash;
}
~ Scott McMurray