]> git.sesse.net Git - casparcg/blob - common/linq.h
[scene] #564 Made a crawler example scene.
[casparcg] / common / linq.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Helge Norberg, helge.norberg@svt.se
20 */
21
22 #pragma once
23
24 #include <cpplinq/linq.hpp>
25
26 #include <utility>
27 #include <numeric>
28
29 namespace caspar {
30
31 struct keys
32 {
33         template <typename Pair>
34         const typename Pair::first_type& operator()(const Pair& p) const
35         {
36                 return p.first;
37         }
38 };
39
40 struct values
41 {
42         template <typename Pair>
43         const typename Pair::second_type& operator()(const Pair& p) const
44         {
45                 return p.second;
46         }
47 };
48
49 struct minmax
50 {
51         template <typename T>
52         std::pair<T, T> operator()(std::pair<T, T> initial, T value) const
53         {
54                 return std::make_pair(std::min(initial.first, value), std::max(initial.second, value));
55         }
56
57         template <typename T>
58         static std::pair<T, T> initial_value()
59         {
60                 return std::make_pair(std::numeric_limits<T>::max(), std::numeric_limits<T>::min());
61         }
62 };
63
64 }