$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] begin, end and directory iterators
From: Robert Jones (robertgbjones_at_[hidden])
Date: 2010-04-01 16:44:08
Do boost::begin() and boost::end() support directory iterators? ie., can you
write
void f(boost::filesystem::path&);
boost::filesystem::path some_directory;
std::for_each(boost::begin(some_directory), boost::end(some_directory), f);
If they don't, could they and should they?
- Rob.