Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Facets for Floating-Point Infinities and NaNs

Introduction
Reference
Examples
Portability
Design Rationale
Synopsis
namespace boost{ namespace math
{
  // Values for flags.
  const int legacy;
  const int signed_zero;
  const int trap_infinity;
  const int trap_nan;

  template<
      class CharType,
      class OutputIterator = std::ostreambuf_iterator<CharType>
  >
  class nonfinite_num_put : public std::num_put<CharType, OutputIterator>
  {
  public:
      explicit nonfinite_num_put(int flags = 0);
  };

  template<
      class CharType,
      class InputIterator = std::istreambuf_iterator<CharType>
  >
  class nonfinite_num_get : public std::num_get<CharType, InputIterator>
  {
  public:
      explicit nonfinite_num_get(int flags = 0);  // legacy, sign_zero ...
  };
}} // namespace boost namespace math

To use these facets

#include <boost\math\special_functions\nonfinite_num_facets.hpp>

PrevUpHomeNext