220 7383 <357325b0-cec5-4d22-ad56-9bb66f76b458@isocpp.org> article
Path: news.gmane.org!not-for-mail
From: Evgeny Panasyuk <evgeny.panasyuk@gmail.com>
Newsgroups: gmane.comp.lang.c++.isocpp.proposals
Subject: Re: To add the method append for all sequential
 containers that have method push_back
Date: Mon, 21 Oct 2013 16:06:33 -0700 (PDT)
Lines: 48
Approved: news@gmane.org
Message-ID: <357325b0-cec5-4d22-ad56-9bb66f76b458@isocpp.org>
References: <4167b82e-a3cc-44ce-9825-b52514bc1531@isocpp.org>
Reply-To: std-proposals@isocpp.org
NNTP-Posting-Host: plane.gmane.org
Mime-Version: 1.0
Content-Type: multipart/alternative; 
	boundary="----=_Part_487_14117035.1382396793717"
X-Trace: ger.gmane.org 1382396792 9573 80.91.229.3 (21 Oct 2013 23:06:32 GMT)
X-Complaints-To: usenet@ger.gmane.org
NNTP-Posting-Date: Mon, 21 Oct 2013 23:06:32 +0000 (UTC)
To: std-proposals@isocpp.org
Original-X-From: std-proposals+bncBC54TLGKR4LBB6XGS2JQKGQEJYHSRXA@isocpp.org Tue Oct 22 01:06:36 2013
Return-path: <std-proposals+bncBC54TLGKR4LBB6XGS2JQKGQEJYHSRXA@isocpp.org>
Envelope-to: gclcip-std-proposals@m.gmane.org
Original-Received: from mail-ob0-f199.google.com ([209.85.214.199])
	by plane.gmane.org with esmtp (Exim 4.69)
	(envelope-from <std-proposals+bncBC54TLGKR4LBB6XGS2JQKGQEJYHSRXA@isocpp.org>)
	id 1VYOYV-0004ky-Q3
	for gclcip-std-proposals@m.gmane.org; Tue, 22 Oct 2013 01:06:35 +0200
Original-Received: by mail-ob0-f199.google.com with SMTP id gq1sf10451339obb.6
        for <gclcip-std-proposals@m.gmane.org>; Mon, 21 Oct 2013 16:06:34 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
        d=gmail.com; s=20120113;
        h=date:from:to:message-id:in-reply-to:references:subject:mime-version
         :x-original-sender:reply-to:precedence:mailing-list:list-id
         :list-post:list-help:list-archive:list-subscribe:list-unsubscribe
         :content-type;
        bh=8tLw++aoJt/cb17JBgqnlb0tbBtZlZy3rceLXDvk05A=;
        b=fCrU+v1f8LwwPi20xr/eopKJttje12ZCBt2k1I1eW9g5XblbObfAjytTW4VT3MDxD+
         abBdYtrqgNKZhD/eL7wAQrkZbxeb/S+sreFABuAYk61l7+b+SEr8iX8v7lJad8FRUIIg
         4NDabt39FAa4s7kJRXwu4HKCCfDc7cXvKuVGGo1DfvL0BXnUhEqipj7Lb3a3chneub/P
         3OCvP8wVexIg23Mh7KKxRoArWLu6USgdD2y16DZdwj+hrBxNiXe1ZasRpv63GmQh5XhD
         FpwZ5JTw/W1D1md6gUbTYxLhcOmCwV+B8GM5fZIFdN4wrn8KmjjIIFsGzM7QZ0h1hyXB
         bo5w==
X-Received: by 10.42.84.136 with SMTP id m8mr234200icl.9.1382396794767;
        Mon, 21 Oct 2013 16:06:34 -0700 (PDT)
X-BeenThere: std-proposals@isocpp.org
Original-Received: by 10.49.99.67 with SMTP id eo3ls2235315qeb.41.gmail; Mon, 21 Oct
 2013 16:06:34 -0700 (PDT)
X-Received: by 10.49.75.168 with SMTP id d8mr565124qew.3.1382396794032;
        Mon, 21 Oct 2013 16:06:34 -0700 (PDT)
In-Reply-To: <4167b82e-a3cc-44ce-9825-b52514bc1531@isocpp.org>
X-Original-Sender: evgeny.panasyuk@gmail.com
Precedence: list
Mailing-list: list std-proposals@isocpp.org; contact std-proposals+owners@isocpp.org
List-ID: <std-proposals.isocpp.org>
X-Google-Group-Id: 399137483710
List-Post: <http://groups.google.com/a/isocpp.org/group/std-proposals/post>, <mailto:std-proposals@isocpp.org>
List-Help: <http://support.google.com/a/isocpp.org/bin/topic.py?topic=25838>, <mailto:std-proposals+help@isocpp.org>
List-Archive: <http://groups.google.com/a/isocpp.org/group/std-proposals/>
List-Subscribe: <http://groups.google.com/a/isocpp.org/group/std-proposals/subscribe>,
 <mailto:std-proposals+subscribe@isocpp.org>
List-Unsubscribe: <http://groups.google.com/a/isocpp.org/group/std-proposals/subscribe>,
 <mailto:googlegroups-manage+399137483710+unsubscribe@googlegroups.com>
Xref: news.gmane.org gmane.comp.lang.c++.isocpp.proposals:7383
Archived-At: <http://permalink.gmane.org/gmane.comp.lang.c++.isocpp.proposals/7383>

------=_Part_487_14117035.1382396793717
Content-Type: text/plain; charset=ISO-8859-1


>
> Are any thoughts about adding the method append to sequantial containers?
>

It should be non-member function. Just like boost::range::push_back - 
http://www.boost.org/doc/libs/1_54_0/libs/range/doc/html/range/reference/algorithms/new/push_back.html
Also read - http://www.gotw.ca/gotw/084.htm 

-- 

--- 
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
Visit this group at http://groups.google.com/a/isocpp.org/group/std-proposals/.

------=_Part_487_14117035.1382396793717
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><blockquote class=3D"gmail_quote" style=3D"margin: 0;margi=
n-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"l=
tr"><div>Are any thoughts about adding the method append&nbsp;to sequantial=
 containers?</div></div></blockquote><div><br>It should be non-member funct=
ion. Just like boost::range::push_back - http://www.boost.org/doc/libs/1_54=
_0/libs/range/doc/html/range/reference/algorithms/new/push_back.html<br>Als=
o read - http://www.gotw.ca/gotw/084.htm <br></div></div>

<p></p>

-- <br />
&nbsp;<br />
--- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to std-proposals+unsubscribe@isocpp.org.<br />
To post to this group, send email to std-proposals@isocpp.org.<br />
Visit this group at <a href=3D"http://groups.google.com/a/isocpp.org/group/=
std-proposals/">http://groups.google.com/a/isocpp.org/group/std-proposals/<=
/a>.<br />

------=_Part_487_14117035.1382396793717--

.
