[#BloombergLP-bbldc-DayCountConvention] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bbldc.adoc[bbldc]::DayCountConvention :relfileprefix: ../../ :mrdocs: This `struct` provides a namespace for enumerating the set of day‐count conventions supported within `bbldc`. See `Enum` in the `TYPES` sub‐section for details. == Synopsis Declared in `<bbldc_daycountconvention.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- struct DayCountConvention; ---- == Description This `struct`: * supports a complete set of _enumeration_ operations For terminology see `bsldoc_glossary`. == Type Aliases [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bbldc/DayCountConvention/Type.adoc[`Type`] | Deprecated alias for `Enum`. |=== == Enums [cols="1"] |=== | Name | xref:BloombergLP/bbldc/DayCountConvention/Enum.adoc[`Enum`] |=== == Static Member Functions [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bbldc/DayCountConvention/bdexStreamIn.adoc[`bdexStreamIn`] | Assign to the specified `variable` the value read from the specified input `stream` using the specified `version` format, and return a reference to `stream`. If `stream` is initially invalid, this operation has no effect. If `version` is not supported, `variable` is unaltered and `stream` is invalidated, but otherwise unmodified. If `version` is supported but `stream` becomes invalid during this operation, `variable` has an undefined, but valid, state. Note that no version is read from `stream`. See the `bslx` package‐level documentation for more information on BDEX streaming of value‐semantic types and containers. | xref:BloombergLP/bbldc/DayCountConvention/bdexStreamOut.adoc[`bdexStreamOut`] | Write the value of the specified `value`, using the specified `version` format, to the specified output `stream`, and return a reference to `stream`. If `stream` is initially invalid, this operation has no effect. If `version` is not supported, `stream` is invalidated, but otherwise unmodified. Note that `version` is not written to `stream`. See the `bslx` package‐level documentation for more information on BDEX streaming of value‐semantic types and containers. | xref:BloombergLP/bbldc/DayCountConvention/maxSupportedBdexVersion-08.adoc[`maxSupportedBdexVersion`] | `maxSupportedBdexVersion` overloads | xref:BloombergLP/bbldc/DayCountConvention/print.adoc[`print`] | Write the string representation of the specified enumeration `value` to the specified output `stream`, and return a reference to `stream`. Optionally specify an initial indentation `level`, whose absolute value is incremented recursively for nested objects. If `level` is specified, optionally specify `spacesPerLevel`, whose absolute value indicates the number of spaces per indentation level for this and all of its nested objects. If `level` is negative, suppress indentation of the first line. If `spacesPerLevel` is negative, format the entire output on one line, suppressing all but the initial indentation (as governed by `level`). The behavior is undefined unless `value` is in the range `[e_ACTUAL_360 .. e_ISDA_1_1]`. See `toAscii` for what constitutes the string representation of a `bbldc::DayCountConvention::Enum` value. | xref:BloombergLP/bbldc/DayCountConvention/toAscii.adoc[`toAscii`] | Return the abbreviated character‐string representation of the enumerator corresponding to the specified `convention`. This representation matches the enumerator's name (e.g., `e_ACTUAL_360`) with the "e_" prefix elided. For example: ` bsl::cout << bbldc::DayCountConvention::toAscii( bbldc::DayCountConvention::e_ACTUAL_360); ` prints the following on standard output: ` ACTUAL_360 ` Note that specifying a `convention` that does not match any of the enumerators will result in an unspecified string representation being returned that is distinct from the values returned for any valid enumerator. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#