Re: [boost] iterator traits

2002-12-20 Thread David Abrahams
Pavol Droba <[EMAIL PROTECTED]> writes: >> Maybe a Wiki page at >> http://www.crystalclearsoftware.com/cgi-bin/boost_wiki/wiki.pl >> ? >> >> Why don't you start one? > Good point, I'll try. > > Actually I have another question. Why is iterator_traits class so hidden. There is a >boost::iterator

Re: [boost] iterator traits

2002-12-19 Thread Pavol Droba
On Thu, Dec 19, 2002 at 03:32:12PM -0500, David Abrahams wrote: > Pavol Droba <[EMAIL PROTECTED]> writes: > > > On Thu, Dec 19, 2002 at 12:04:03PM -0500, David Abrahams wrote: > >> David Abrahams <[EMAIL PROTECTED]> writes: > >> > >> > Pavol Droba <[EMAIL PROTECTED]> writes: > >> > > >> >> but I'

Re: [boost] iterator traits

2002-12-19 Thread David Abrahams
Pavol Droba <[EMAIL PROTECTED]> writes: > On Thu, Dec 19, 2002 at 12:04:03PM -0500, David Abrahams wrote: >> David Abrahams <[EMAIL PROTECTED]> writes: >> >> > Pavol Droba <[EMAIL PROTECTED]> writes: >> > >> >> but I'm wondering, why it is not documented, or at least mentioned somewhere? >> >> Th

Re: [boost] iterator traits

2002-12-19 Thread Pavol Droba
On Thu, Dec 19, 2002 at 12:04:03PM -0500, David Abrahams wrote: > David Abrahams <[EMAIL PROTECTED]> writes: > > > Pavol Droba <[EMAIL PROTECTED]> writes: > > > >> but I'm wondering, why it is not documented, or at least mentioned somewhere? > >> There are more of such useful headers in boost/deta

Re: [boost] iterator traits

2002-12-19 Thread David Abrahams
David Abrahams <[EMAIL PROTECTED]> writes: > Pavol Droba <[EMAIL PROTECTED]> writes: > >> but I'm wondering, why it is not documented, or at least mentioned somewhere? >> There are more of such useful headers in boost/detail directory, which are used >> by various libraries. Whouldn't it make sens

Re: [boost] iterator traits

2002-12-19 Thread David Abrahams
Pavol Droba <[EMAIL PROTECTED]> writes: > Hi, > > Recently I had to deal with iterator_traits. This feature is kind of problematic > on the compilers without partial specialization. Ususally, when iterator_traits > are broken, they are not handling generic pointers as iterators. Most of the STL

[boost] iterator traits

2002-12-19 Thread Pavol Droba
Hi, Recently I had to deal with iterator_traits. This feature is kind of problematic on the compilers without partial specialization. Ususally, when iterator_traits are broken, they are not handling generic pointers as iterators. Most of the STL libraries have workaroud for such a situation, but