-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathNAMESPACE
81 lines (70 loc) · 2.39 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# IMPORTS
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
importFrom("R.methodsS3", "setMethodS3")
importFrom("R.oo", "throw")
## Importing Class:es
importFrom("R.oo", "Package")
## Importing generics
importFrom("R.oo", "clearCache")
## Importing functions
importFrom("R.oo", "attachLocally")
importFrom("R.oo", "startupMessage")
importFrom("R.oo", "trim")
importFrom("R.utils", "cat") ## Multi-sources: R.utils, base
importFrom("R.utils", "isAbsolutePath")
importFrom("R.utils", "isDirectory")
importFrom("R.utils", "isFile")
importFrom("R.utils", "listDirectory")
importFrom("R.utils", "mkdirs")
importFrom("R.utils", "removeDirectory")
importFrom("R.utils", "touchFile")
importFrom("utils", "compareVersion")
importFrom("utils", "packageVersion")
importFrom("utils", "file_test")
importFrom("utils", "menu")
importFrom("digest", "digest")
## Manually adjusted
## Cannot import explicitly from 'base';
## importFrom("base", "getOption") ## Multi-sources: R.utils, base
## Manual imports
importFrom("R.utils", "Arguments")
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# EXPORTS
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Export all public methods, that is, those without a preceeding dot
# in their names.
export("R.cache")
export("evalWithMemoization")
export("addMemoization")
export("memoizedCall")
export("getCacheRootPath")
export("setCacheRootPath")
export("getCachePath")
export("findCache")
export("generateCache")
export("readCacheHeader")
export("loadCache")
export("saveCache")
export("getChecksum")
export("clearCache") # Imported from R.oo
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# S3 METHOD DECLARATIONS
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# default
S3method("addMemoization", "default")
S3method("clearCache", "default")
S3method("findCache", "default")
S3method("generateCache", "default")
S3method("getCachePath", "default")
S3method("getCacheRootPath", "default")
S3method("getChecksum", "default")
S3method("loadCache", "default")
S3method("memoizedCall", "default")
S3method("readCacheHeader", "default")
S3method("saveCache", "default")
S3method("setCachePath", "default")
S3method("setCacheRootPath", "default")
S3method("setupCacheRootPath", "default")
# Object
S3method("getChecksum", "Object")