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 a snapshot of the master branch, built from commit 682d8fbea2.
PrevUpHomeNext

Class template iso_format

boost::date_time::iso_format — Format description for ISO 8601 normal YYYYMMDD.

Synopsis

// In header: <boost/date_time/iso_format.hpp>

template<typename charT> 
class iso_format : public boost::date_time::iso_format_base< charT > {
public:

  // public static functions
  static bool has_date_sep_chars();
};

Description

iso_format public static functions

  1. static bool has_date_sep_chars();
    The ios standard format doesn't use char separators.

PrevUpHomeNext