year-day-getters: Getters: year-day

year-day-gettersR Documentation

Getters: year-day

Description

These are year-day methods for the getter generics.

  • get_year() returns the Gregorian year.

  • get_day() returns the day of the year.

  • There are sub-daily getters for extracting more precise components.

Usage

## S3 method for class 'clock_year_day'
get_year(x)

## S3 method for class 'clock_year_day'
get_day(x)

## S3 method for class 'clock_year_day'
get_hour(x)

## S3 method for class 'clock_year_day'
get_minute(x)

## S3 method for class 'clock_year_day'
get_second(x)

## S3 method for class 'clock_year_day'
get_millisecond(x)

## S3 method for class 'clock_year_day'
get_microsecond(x)

## S3 method for class 'clock_year_day'
get_nanosecond(x)

Arguments

x

⁠[clock_year_day]⁠

A year-day to get the component from.

Value

The component.

Examples

x <- year_day(2019, 101:105, 1, 20, 30)

get_day(x)
get_second(x)

# Cannot extract more precise components
y <- year_day(2019, 1)
try(get_hour(y))

# Cannot extract components that don't exist for this calendar
try(get_quarter(x))

clock documentation built on May 31, 2023, 9:39 p.m.