$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Vincent LaBella (vlabella_at_[hidden])
Date: 2003-04-25 16:01:56
Hello,
I'm using boost::tokenizer and want to goto the last token in the
sequence, so I tried
Tok::iterator last = tok.end();
last--; // error decrement not defined
last = tok.begin();
advance(last,tok.size()-1); // error size() not defined.
Is it possible to add decrement or a back() reference to tokenizer?
Thanks
Vince