reduce.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 
33 
34 namespace atria {
35 namespace xform {
36 namespace impure {
37 
38 namespace detail {
39 
40 template <typename ResultT, typename ArgT>
41 auto from_any_state(ArgT&& s)
42  -> estd::enable_if_t<std::is_same<estd::decay_t<ArgT>, any_state>{},
43  estd::decay_t<ResultT> >
44 {
45  return std::forward<ArgT>(s).template as<ResultT>();
46 }
47 
48 template <typename ResultT, typename ArgT>
49 auto from_any_state(ArgT&& s)
50  -> estd::enable_if_t<!std::is_same<estd::decay_t<ArgT>, any_state>{},
51  ArgT&&>
52 {
53  return std::forward<ArgT>(s);
54 }
55 
56 } // namespace detail
57 
58 template <typename ReducingFnT,
59  typename StateT,
60  typename ...InputRangeTs>
61 auto reduce(ReducingFnT&& step, StateT&& state, InputRangeTs&& ...ranges)
62  -> estd::decay_t<StateT>
63 {
64  try {
65  return detail::from_any_state<StateT>(
66  xform::detail::is_non_empty(ranges...)
68  xform::detail::reduce_nested_non_empty(
69  std::forward<ReducingFnT>(step),
70  std::forward<StateT>(state),
71  std::forward<InputRangeTs>(ranges)...))
72  : std::forward<StateT>(state));
73  } catch (reduce_aborted_error<estd::decay_t<StateT> >& err) {
74  return std::move(err.result);
75  } catch (reduce_aborted_error<any_state>& err) {
76  return std::move(err.result).as<StateT>();
77  }
78 }
79 
80 } // namespace impure
81 } // namespace xform
82 } // namespace atria
STL namespace.
auto reduce(ReducingFnT &&step, StateT &&state, InputRangeTs &&...ranges) -> estd::decay_t< StateT >
Similar to clojure.core/reduce.
Definition: reduce.hpp:70
auto state_complete(T &&s) -> decltype(state_traits_t< T >::complete(std::forward< T >(s)))
Convenience function for calling state_traits::complete
C++ amazing templates and reusable implementations awesomeness.
Definition: _doc.hpp:35
Fork me on GitHub