Expression Templates Library (ETL)
inv.hpp
1 //=======================================================================
2 // Copyright (c) 2014-2023 Baptiste Wicht
3 // Distributed under the terms of the MIT License.
4 // (See accompanying file LICENSE or copy at
5 // http://opensource.org/licenses/MIT)
6 //=======================================================================
7 
8 #pragma once
9 
10 #include "etl/impl/std/inv.hpp"
11 
12 namespace etl::detail {
13 
17 struct inv_impl {
23  template <typename A, typename C>
24  static void apply(A&& a, C&& c) {
25  etl::impl::standard::inv(a, c);
26  }
27 };
28 
29 } //end of namespace etl::detail
static void apply(A &&a, C &&c)
Apply the functor.
Definition: inv.hpp:24
Definition: expression_builder.hpp:699
Functor for Inverse.
Definition: inv.hpp:17