-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathundocumented-ruby-core.txt
105 lines (69 loc) · 1.47 KB
/
undocumented-ruby-core.txt
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
The following items are not documented:
class File # is documented
# in file file.c
Separator = nil
# in file file.c
SEPARATOR = nil
# in file file.c
ALT_SEPARATOR = nil
# in file file.c
PATH_SEPARATOR = nil
end
class Hash # is documented
# in file hash.c:1216
def initialize_copy(p1); end
end
class IO # is documented
# in file io.c
SEEK_SET = nil
# in file io.c
SEEK_CUR = nil
# in file io.c
SEEK_END = nil
end
module Kernel # is documented
# in file eval.c:1495
def __callee__(); end
end
class LoadError # is documented
attr_reader :path # in file error.c
end
module Marshal # is documented
# in file marshal.c
MAJOR_VERSION = nil
# in file marshal.c
MINOR_VERSION = nil
end
module Math # is documented
# in file math.c
PI = nil
# in file math.c
E = nil
end
module Process::GID # is documented
# in file process.c:4819
def self.from_name(p1); end
end
module Process::UID # is documented
# in file process.c:4771
def self.from_name(p1); end
end
class Random # is documented
# in file random.c
DEFAULT = nil
end
class RubyVM # is documented
# in file vm.c
USAGE_ANALYSIS_REGS = nil
# in file vm.c
USAGE_ANALYSIS_INSN_BIGRAM = nil
end
Files: 77
Classes: 91 ( 0 undocumented)
Modules: 18 ( 0 undocumented)
Constants: 115 (14 undocumented)
Attributes: 1 ( 1 undocumented)
Methods: 1677 ( 4 undocumented)
Total: 1902 (19 undocumented)
99.00% documented
Elapsed: 34.4s