float_util.h 748 Bytes
Newer Older
gejun's avatar
gejun committed
1 2 3 4
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
#ifndef BUTIL_FLOAT_UTIL_H_
#define BUTIL_FLOAT_UTIL_H_
gejun's avatar
gejun committed
7

8
#include "butil/build_config.h"
gejun's avatar
gejun committed
9 10 11 12 13

#include <float.h>

#include <cmath>

14
namespace butil {
gejun's avatar
gejun committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33

template <typename Float>
inline bool IsFinite(const Float& number) {
#if defined(OS_POSIX)
  return std::isfinite(number) != 0;
#elif defined(OS_WIN)
  return _finite(number) != 0;
#endif
}

template <typename Float>
inline bool IsNaN(const Float& number) {
#if defined(OS_POSIX)
  return std::isnan(number) != 0;
#elif defined(OS_WIN)
  return _isnan(number) != 0;
#endif
}

34
}  // namespace butil
gejun's avatar
gejun committed
35

36
#endif  // BUTIL_FLOAT_UTIL_H_