DryChem 1.0.0
A generic, compile-time C++ toolbox with no dependencies for the modern computational chemistry project.
Loading...
Searching...
No Matches
popFrontList.hpp
Go to the documentation of this file.
1// Copyright (c) 2020-2025 Cody R. Drisko. All rights reserved.
2// Licensed under the MIT License. See the LICENSE file in the project root for more information.
3//
4// Name: popFrontList.hpp
5// Author: crdrisko
6// Date: 01/10/2021-08:42:01
7// Description: A metafunction for removing the first element from a compile-time list
8
9#ifndef DRYCHEM_COMMON_UTILITIES_INCLUDE_COMMON_UTILS_META_ALGORITHMS_BASICALGORITHMS_POPFRONTLIST_HPP
10#define DRYCHEM_COMMON_UTILITIES_INCLUDE_COMMON_UTILS_META_ALGORITHMS_BASICALGORITHMS_POPFRONTLIST_HPP
11
12namespace CppUtils::Meta
13{
20 template<typename List>
22
24 template<typename List>
26} // namespace CppUtils::Meta
27
28#endif
Definition frontList.hpp:13
typename pop_front_list< List >::type pop_front_list_t
Convenience variable template for ease-of-use.
Definition popFrontList.hpp:25
Definition popFrontList.hpp:21