primecount 0.2.1

Rust wrapper for https://github.com/kimwalisch/primecount
Documentation
///
/// @file  min.hpp
/// @brief Template min and max functions that allow comparing
///        different types if both types are integral
///        and sizeof(A) >= sizeof(B).
///
/// Copyright (C) 2020 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///

#ifndef MIN_HPP
#define MIN_HPP

#include <algorithm>
#include <type_traits>

namespace {

template <typename A, typename B>
struct is_comparable
{
  enum {
    value = std::is_same<A, B>::value || (
            std::is_integral<A>::value &&
            std::is_integral<B>::value &&
            sizeof(A) >= sizeof(B))
  };
};

template <typename A, typename B, typename C>
struct is_comparable_3
{
  enum {
    value = std::is_integral<A>::value &&
            std::is_integral<B>::value &&
            std::is_integral<C>::value &&
            sizeof(A) >= sizeof(B) &&
            sizeof(B) >= sizeof(C)
  };
};

template <typename A, typename B>
inline B min(A a, B b)
{
  static_assert(is_comparable<A, B>::value,
                "min(A, B): Cannot compare types A and B");

  return (B) std::min(a, (A) b);
}

template <typename A, typename B, typename C>
inline C min3(A a, B b, C c)
{
  static_assert(is_comparable_3<A, B, C>::value,
                "min3(A, B, C): Cannot compare types A, B and C");

  return (C) std::min(a, (A) std::min(b, (B) c));
}

template <typename A, typename B>
inline A max(A a, B b)
{
  static_assert(is_comparable<A, B>::value,
                "max(A, B): Cannot compare types A and B");

  return std::max(a, (A) b);
}

template <typename A, typename B, typename C>
inline A max3(A a, B b, C c)
{
  static_assert(is_comparable_3<A, B, C>::value,
                "max3(A, B, C): Cannot compare types A, B and C");

  return std::max(a, (A) std::max(b, (B) c));
}

} // namespace

#endif