File: is_weekday.Rd

package info (click to toggle)
r-cran-clock 0.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,856 kB
  • sloc: cpp: 19,564; sh: 17; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 453 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/weekday.R
\name{is_weekday}
\alias{is_weekday}
\title{Is \code{x} a weekday?}
\usage{
is_weekday(x)
}
\arguments{
\item{x}{\verb{[object]}

An object.}
}
\value{
\code{TRUE} if \code{x} inherits from \code{"clock_weekday"}, otherwise \code{FALSE}.
}
\description{
This function determines if the input is a weekday object.
}
\examples{
is_weekday(1)
is_weekday(weekday(1))
}