Expression Templates Library (ETL)
include
etl
impl
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
etl::detail::inv_impl::apply
static void apply(A &&a, C &&c)
Apply the functor.
Definition:
inv.hpp:24
etl::detail
Definition:
expression_builder.hpp:699
etl::detail::inv_impl
Functor for Inverse.
Definition:
inv.hpp:17
Generated by
1.8.13