# Functions
DateTimeToString converts the FHIR DateTime element into its string reprsentation as defined in http://hl7.org/fhir/R4/datatypes.html#datetime.
DateTimeToTime converts a FHIR DateTime element into a Go time.Time value.
DateToString converts the FHIR Date element into its string reprsentation as defined in http://hl7.org/fhir/R4/datatypes.html#date.
DateToTime converts a FHIR Date element into a Go time.Time value.
DurationToDuration converts a FHIR Duration element into a Go native time.Duration object.
InstantToString converts the FHIR Instant element into its string reprsentation as defined in http://hl7.org/fhir/R4/datatypes.html#instant.
InstantToTime converts a FHIR Instant element into a Go time.Time value.
MustConvertToInteger converts a FHIR Integer type into a Go native integer type.
TimeToDuration converts a FHIR Time element into a Go time.Duration value.
TimeToString converts the FHIR Time element into its string reprsentation as defined in http://hl7.org/fhir/R4/datatypes.html#time.
ToInt converts a FHIR Integer type into a Go native int.
ToInt16 converts a FHIR Integer type into a Go native int16.
ToInt32 converts a FHIR Integer type into a Go native int32.
ToInt64 converts a FHIR Integer type into a Go native int64.
ToInt8 converts a FHIR Integer type into a Go native int8.
ToInteger converts a FHIR Integer type into a Go native integer type.
ToString converts a basic FHIR Primitive into a human-readable string representation.
ToUint converts a FHIR Integer type into a Go native uint.
ToUint16 converts a FHIR Integer type into a Go native uint16.
ToUint32 converts a FHIR Integer type into a Go native uint32.
ToUint64 converts a FHIR Integer type into a Go native uint64.
ToUint8 converts a FHIR Integer type into a Go native uint8.
# Variables
ErrIntegerTruncated is an error raised when an integer truncation occurs during integer conversion.