libcruft-util/types.hpp

55 lines
1.4 KiB
C++
Raw Normal View History

2011-07-20 20:34:46 +10:00
/*
* This file is part of libgim.
*
* libgim is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2011-2014 Danny Robson <danny@nerdcruft.net>
2011-07-20 20:34:46 +10:00
*/
2012-06-13 15:46:44 +10:00
#ifndef __UTIL_TYPES_HPP
#define __UTIL_TYPES_HPP
2011-05-23 17:18:52 +10:00
#include <cstdint>
#include <cstdlib>
2011-07-16 14:47:34 +10:00
#include <memory>
#include <stdexcept>
2011-05-23 17:18:52 +10:00
//-----------------------------------------------------------------------------
/// Returns the number of elements of a statically allocated array
template <typename T, size_t N>
2014-03-03 14:09:41 +11:00
constexpr size_t elems(const T (&)[N])
{ return N; }
//-----------------------------------------------------------------------------
template <class T>
T
first (T a) {
if (a)
return a;
throw std::logic_error ("no valid object");
}
template <class T, class ...Args>
T
first (T a, Args&& ...b) {
if (a)
return a;
return first (std::forward<Args>(b)...);
}
2012-06-13 15:46:44 +10:00
#endif