CETL 0.0.0
 
Loading...
Searching...
No Matches
cetl::type_traits_ext::partial< Fun, Left > Struct Template Reference

#include "cetl/type_traits_ext.hpp"

Public Types

template<typename... Right>
using type = Fun<Left..., Right...>
 

Detailed Description

template<template< typename... > class Fun, typename... Left>
struct cetl::type_traits_ext::partial< Fun, Left >

Partially instantiate a template by holding the Left type arguments fixed.

The resulting template is accessible via the member template alias named type. For correct usage don't forget to prefix the type member with template; e.g.:

template <typename T, typename... Ts>
constexpr std::size_t first_index_of_v =
static constexpr std::size_t find_v
Alias for find.
Definition type_traits_ext.hpp:67

Does not work with non-type template parameters.


The documentation for this struct was generated from the following file: