$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] Bounded String
From: Jean-Francois Bastien (jfbastien_at_[hidden])
Date: 2009-05-12 14:31:11
> I was looking for a bounded capacity string and I have take a
> look to the review (2006) of the rejected FixedString library
Have you also looked at Andrei's flex_string? It's now part of Loki:
http://loki-lib.sourceforge.net/
All you'd need to do is implement a storage policy. This allows you to
factor out the bounded capacity from the other features of a string
(which you don't need to implement).
JF