map.hpp
Go to the documentation of this file.
1 //
2 // Copyright (C) 2014, 2015 Ableton AG, Berlin. All rights reserved.
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a
5 // copy of this software and associated documentation files (the "Software"),
6 // to deal in the Software without restriction, including without limitation
7 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 // and/or sell copies of the Software, and to permit persons to whom the
9 // Software is furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 // DEALINGS IN THE SOFTWARE.
21 //
22 
27 #pragma once
28 
30 #include <atria/meta/utils.hpp>
32 
33 namespace atria {
34 namespace xform {
35 
36 #if ABL_CXX14
37 
38 auto map = [](auto mapping) mutable
39 {
40  return [=](auto step) mutable
41  {
42  return [=](auto&& s, auto&& ...is) mutable
43  {
44  return step(ABL_FORWARD(s), estd::invoke(mapping, ABL_FORWARD(is)...));
45  };
46  };
47 };
48 
49 #else // ABL_CXX14
50 
51 namespace detail {
52 
53 struct map_rf_gen
54 {
55  template <typename ReducingFnT,
56  typename MappingT>
57  struct apply
58  {
59  ReducingFnT step;
60  MappingT mapping;
61 
62  template <typename State, typename ...Inputs>
63  auto operator() (State&& s, Inputs&& ...is)
65  step(std::forward<State>(s),
66  estd::invoke(mapping, std::forward<Inputs>(is)...)))
67  };
68 };
69 
70 } // namespace detail
71 
72 template <typename T>
73 using map_t = transducer_impl<detail::map_rf_gen, T>;
74 
78 template <typename MappingT>
79 auto map(MappingT&& mapping)
81 {
83  std::forward<MappingT>(mapping) };
84 }
85 
86 #endif // ABL_CXX14
87 
88 } // namespace xform
89 } // namespace atria
#define ABL_DECLTYPE_RETURN(body_expr)
Utility for defining generic functions with a deduced return type, that are composed of a single expr...
Definition: utils.hpp:109
Utility to write simple transducers easily.
C++ amazing templates and reusable implementations awesomeness.
Definition: _doc.hpp:35
auto map(MappingT &&mapping) -> map_t< estd::decay_t< MappingT > >
Similar to clojure.core/map$1.
Definition: map.hpp:79
Fork me on GitHub