$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jim Lear (jim.lear_at_[hidden])
Date: 2004-12-09 09:22:36
I know this is not the correct place to suggest new features to the STL,
but I can't find a similar group for STL. Any suggestions?
Sorry for the interruption.
P.S. In case you're wondering what the suggestion is: Add ability to use
random access operators with iterators. E.g.
vector<int> intv;
...
vector<int>::iterator i=intv.begin();
intv[i]++;
It seems odd and confusing that iterators have pointer semantics but not
random access semantics.
-- Jim Lear