[root] / trunk / core / cont / inc / TOrdCollection.h Repository:
ViewVC logotype

Log of /trunk/core/cont/inc/TOrdCollection.h

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 43515 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Mar 27 21:15:53 2012 UTC (2 years, 9 months ago) by pcanal
File length: 5385 byte(s)
Diff to previous 23531
Fix coding convention R.RN7 (Avoid the raw C types 'long', 'unsigned long', 'long double', 'bool', 'long long' and 'unsigned long long'.)

Revision 23531 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 24 16:23:42 2008 UTC (6 years, 9 months ago) by rdm
File length: 5385 byte(s)
Diff to previous 23198
iterator of TOrdCollection objects can be now used with std::for_each,
std::find_if, std::count_if and the like.

Revision 23198 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Apr 14 09:23:08 2008 UTC (6 years, 9 months ago) by rdm
File length: 5082 byte(s)
Diff to previous 22961
From Anar and me:
The background is the following. While working on the PROOF code I found
that enumerating TList is an inconvenient and a long operation, I had to
write the same code all over the place and make duplications. I tried
to use STD algorithms with it, namely std::for_each, and failed.
I therefore decided to enable std::for_each algorithm for ROOT 
Containers/Iterators by making as few as possible changes, without rewriting
iterators at all. Now with only two simple lines of code one is able to
iterate through a container:

TIter iter(&list);
for_each(iter.Begin(), TIter::End(), SEnumFunctor());

or

for_each(iter.Begin(), inter_end, SEnumFunctor());

where iter_end could be an iterator to a middle of the container.

After I had changed Iterators so that they could be used with std::for_each,
I decided to go further and did some more changes. As a result,

  - I have updated CINT implementation of some algorithms (they look now
    more or less better in terms of the standard),

  - TList and TObjArray can be now used with std::for_each, std::find_if,
    std::count_if (probably with some more algorithms. I've listed here
    only what has been *checked* by me). Other containers will be supported
    in a next patch.

  - A test program has been added: $ROOTSYS/test/stressIterators.cxx

  - A tutorial macro has been added: $ROOTSYS/tutorials/cont/TListAndSTL.C

Patch has been verified on Linux, MacOS X, Solaris 10 i386 and Windows.

Revision 22961 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 3 13:32:57 2008 UTC (6 years, 9 months ago) by rdm
File length: 4815 byte(s)
Diff to previous 20882
move the directories:
  base clib cont meta metautils newdelete pcre rint thread unix utils
  winnt zip
under the new core meta directory.

Revision 20882 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:31:26 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4815 byte(s)
Diff to previous 19826
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4815 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4869 byte(s)
Diff to previous 17820
remove :$ from tag line

Revision 17820 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Feb 9 11:51:09 2007 UTC (7 years, 11 months ago) by rdm
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4888 byte(s)
Diff to previous 10520
From Federico:
effc++ corrections.

Revision 10520 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 12 21:51:18 2004 UTC (10 years, 2 months ago) by brun
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4712 byte(s)
Diff to previous 5022
Implement a sugestion from Eddy Offermann: add constness to
the following functions of the collection classes
AddAfter, AddBefore, After, Before

Revision 5022 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jul 29 09:22:29 2002 UTC (12 years, 5 months ago) by rdm
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4689 byte(s)
Diff to previous 1872
made argument of GetObjectRef() a const TObject*. Idem for TMap::GetValue().
Suggestion by Axel.

Revision 1872 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Mar 29 11:25:00 2001 UTC (13 years, 9 months ago) by brun
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4683 byte(s)
Diff to previous 1868
Forgot to make GetObjectRef const.

Revision 1868 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Mar 29 10:57:01 2001 UTC (13 years, 9 months ago) by brun
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4676 byte(s)
Diff to previous 1336
Add new function GetObjectRef.

Revision 1336 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jan 9 18:33:59 2001 UTC (14 years ago) by rdm
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4635 byte(s)
Diff to previous 3
IndexOf() now takes a const TObject* as argument.

Revision 3 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: trunk/cont/inc/TOrdCollection.h
File length: 4596 byte(s)
Copied from: branches/rdm/cont/inc/TOrdCollection.h revision 2
Diff to previous 2
This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.

Revision 2 - (view) (download) (as text) (annotate) - [select for diffs]
Added Tue May 16 17:00:58 2000 UTC (14 years, 8 months ago) by rdm
Original Path: branches/rdm/cont/inc/TOrdCollection.h
File length: 4596 byte(s)
Initial import of ROOT into CVS

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9