~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to src/Kernel/Containers/list.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-04-23 07:09:40 UTC
  • mfrom: (4.1.8 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100423070940-72mjdmdepfgrvo8f
Tags: 1:1.0.7.4-2
Re-upload, former upload failed with wrong diff.gz perhaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
TMPL list<T>  remove (list<T> l, T what);
73
73
TMPL bool     contains (list<T> l, T what);
74
74
 
75
 
TMPL ostream& operator << (ostream& out, list<T> l);
 
75
TMPL tm_ostream& operator << (tm_ostream& out, list<T> l);
76
76
TMPL list<T>& operator << (list<T>& l, T item);
77
77
TMPL list<T>& operator << (list<T>& l1, list<T> l2);
78
78
TMPL list<T>& operator >> (T item, list<T>& l);