$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Dominique Devienne (ddevienne_at_[hidden])
Date: 2021-04-09 12:54:30
On Fri, Apr 9, 2021 at 2:47 PM Ivica B via Boost <boost_at_[hidden]>
wrote:
> multivector<rectangle, circle, triangle> mvect;
> Each type is held in a separate std::vector for that type. So in the above
> case, multivector<rectangle, circle, triangle> consists of three
> std::vectors: std::vector<rectangle>, std::vector<circle> and
> std::vector<triangle>.
>
Sounds a bit like
https://www.boost.org/doc/libs/1_75_0/doc/html/poly_collection.html no? --DD