-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathNAMESPACE
43 lines (37 loc) · 912 Bytes
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
export("anytime",
"anydate",
"getFormats",
"addFormats",
"removeFormats",
"utctime",
"utcdate",
"iso8601",
"rfc2822",
"rfc3339",
"yyyymmdd",
"assertDate",
"assertTime")
importFrom("Rcpp", "evalCpp")
importFrom("utils", "head", "read.table")
useDynLib("anytime", .registration=TRUE)
S3method(anytime, default)
S3method(anytime, Date)
S3method(anytime, POSIXt)
S3method(anytime, factor)
S3method(anydate, default)
S3method(anydate, Date)
S3method(anydate, POSIXt)
S3method(anydate, factor)
S3method(utcdate, default)
S3method(utcdate, Date)
S3method(utcdate, POSIXt)
S3method(utcdate, factor)
S3method(iso8601, default)
S3method(iso8601, Date)
S3method(iso8601, POSIXt)
S3method(rfc2822, default)
S3method(rfc2822, Date)
S3method(rfc2822, POSIXt)
S3method(rfc3339, default)
S3method(rfc3339, Date)
S3method(rfc3339, POSIXt)