PrevUpHomeNext

Struct to_iso_weekday_value

fd::to_iso_weekday_value — Visitor for iso_weekday_variant and functor yielding a iso_weekday_value.

Synopsis

// In header: <fd/date_time_typed.h>


struct to_iso_weekday_value {

  // public member functions
  constexpr iso_weekday_value operator()(iso_weekday) const;
  iso_weekday_value operator()(special_iso_weekday) const;
  constexpr iso_weekday_value operator()(iso_weekday_value) const;
  constexpr iso_weekday_value operator()(int) const;
};

Description

to_iso_weekday_value public member functions

  1. constexpr iso_weekday_value operator()(iso_weekday weekDay) const;
  2. iso_weekday_value operator()(special_iso_weekday weekDay) const;
  3. constexpr iso_weekday_value operator()(iso_weekday_value weekDay) const;
  4. constexpr iso_weekday_value operator()(int weekDay) const;

PrevUpHomeNext