source: trunk/yat/utility/stl_utility.h @ 723

Last change on this file since 723 was 723, checked in by Jari Häkkinen, 16 years ago

Fixes #10. Removed read_to*(std::vector..) functionality.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1#ifndef _theplu_yat_utility_stl_utility_
2#define _theplu_yat_utility_stl_utility_
3
4// $Id: stl_utility.h 723 2007-01-01 15:58:01Z jari $
5
6/*
7  Copyright (C) 2004 Jari Häkkinen
8  Copyright (C) 2005 Jari Häkkinen, Peter Johansson, Markus Ringnér
9  Copyright (C) 2006, 2007 Jari Häkkinen
10
11  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
12
13  The yat library is free software; you can redistribute it and/or
14  modify it under the terms of the GNU General Public License as
15  published by the Free Software Foundation; either version 2 of the
16  License, or (at your option) any later version.
17
18  The yat library is distributed in the hope that it will be useful,
19  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21  General Public License for more details.
22
23  You should have received a copy of the GNU General Public License
24  along with this program; if not, write to the Free Software
25  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
26  02111-1307, USA.
27*/
28
29///
30/// \file stl_utility.h
31///
32/// There are a number of useful functionality missing in the Standard
33/// Template Library, STL. This file is an effort to provide
34/// extensions to STL functionality.
35///
36
37#include <ostream>
38#include <string>
39#include <utility>
40#include <vector>
41
42namespace std {
43
44  ///
45  /// Print out a pair
46  ///
47  // This is in namespace std because we have not figured out how to have
48  // pair and its operator<< in different namespaces
49  template <class T1, class T2> 
50  std::ostream& operator<<(std::ostream& out, const std::pair<T1,T2>& p) 
51  { out << p.first << "\t" << p.second; return out; }
52
53}
54
55namespace theplu {
56namespace yat {
57namespace utility {
58
59
60  ///
61  /// STL provides operator< for the pair.first element, but none for
62  /// pair.second. This template provides this and can be used as the
63  /// comparison object in generic functions such as the STL sort.
64  ///
65  template <class T1,class T2>
66  struct pair_value_compare
67  {
68    ///
69    /// @return true if x.second<y.second or (x.second==y.second and
70    /// x.first<y.first)
71    ///
72    inline bool operator()(const std::pair<T1,T2>& x,
73                           const std::pair<T1,T2>& y) {
74      return ((x.second<y.second) ||
75              (!(y.second<x.second) && (x.first<y.first))); 
76    }
77  };
78
79  ///
80  /// @brief Function converting a string to lower case
81  ///
82  void to_lower(std::string& s);
83
84  ///
85  /// @brief Function converting a string to upper case
86  ///
87  void to_upper(std::string& s);
88
89}}} // of namespace utility, yat, and theplu
90
91#endif
Note: See TracBrowser for help on using the repository browser.