From: Charles Krug Newsgroups: comp.os.msdos.djgpp Subject: Re: libgpp deprecated? Date: Tue, 13 Oct 1998 13:02:26 -0400 Organization: Pentek Corporation Lines: 24 Message-ID: <362387A2.2AE6DEAE@mail.pentek.com> References: <3621cede DOT 0 AT news DOT uni-bielefeld DOT de> NNTP-Posting-Host: mail.pentek.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.04 [en] (WinNT; I) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Manni Heumann wrote: > What does that mean? > No longer up to date? > > What's the replacement? Most of the classes there are now part of the standard. String (_string.h) is replaced by string (string) Vector (_vector) is replaced by valarray. a vector using the STL is a vector in the computer science sense (a fixed size random access data structure) rather than in the mathematical sense, for which we now use valarray. All of these are covered in Stroustroup. Hope that helps Charles