Fix >31 character filenames

[SVN r25040]
This commit is contained in:
Dave Abrahams
2004-09-13 14:39:59 +00:00
parent 3318c82f83
commit aa9e49b727
14 changed files with 15 additions and 15 deletions

View File

@ -0,0 +1,8 @@
The function output iterator adaptor makes it easier to create custom
output iterators. The adaptor takes a unary function and creates a
model of Output Iterator. Each item assigned to the output iterator is
passed as an argument to the unary function. The motivation for this
iterator is that creating a conforming output iterator is non-trivial,
particularly because the proper implementation usually requires a
proxy object.