File tree 5 files changed +52
-10
lines changed
5 files changed +52
-10
lines changed Original file line number Diff line number Diff line change @@ -47,9 +47,19 @@ Namespace Flags
47
47
Public Enum CharFlags
48
48
HAS_HASH = 1
49
49
BYTES = 1 << 1
50
+ ''' <summary>
51
+ ''' const LATIN1_MASK = (1<<2);
52
+ ''' </summary>
50
53
LATIN1 = 1 << 2
54
+ ''' <summary>
55
+ ''' const UTF8_MASK = (1<<3);
56
+ ''' </summary>
51
57
UTF8 = 1 << 3
52
58
CACHED = 1 << 5
59
+
60
+ ''' <summary>
61
+ ''' const ASCII_MASK = (1<<6);
62
+ ''' </summary>
53
63
ASCII = 1 << 6
54
64
End Enum
55
65
End Namespace
Original file line number Diff line number Diff line change @@ -52,10 +52,25 @@ Namespace Flags
52
52
Public Enum FileTypes
53
53
Unknown = 0
54
54
55
+ ''' <summary>
56
+ ''' bzip2 compression
57
+ ''' </summary>
55
58
<Description( "bz2" )> bzip2
59
+ ''' <summary>
60
+ ''' gzip compression
61
+ ''' </summary>
56
62
<Description( "gzip" )> gzip
63
+ ''' <summary>
64
+ ''' xz compression
65
+ ''' </summary>
57
66
<Description( "xz" )> xz
67
+ ''' <summary>
68
+ ''' rdata version 2 (binary)
69
+ ''' </summary>
58
70
<Description( "rdata version 2 (binary)" )> rdata_binary_v2
71
+ ''' <summary>
72
+ ''' rdata version 3 (binary)
73
+ ''' </summary>
59
74
<Description( "rdata version 3 (binary)" )> rdata_binary_v3
60
75
End Enum
61
76
End Namespace
Original file line number Diff line number Diff line change @@ -49,15 +49,15 @@ Namespace Flags
49
49
''' </summary>
50
50
Public Enum RObjectType As Byte
51
51
''' <summary>
52
- ''' NULL
52
+ ''' NULL, nil = NULL
53
53
''' </summary>
54
54
NIL = 0
55
55
''' <summary>
56
56
''' symbols
57
57
''' </summary>
58
58
SYM = 1
59
59
''' <summary>
60
- ''' pairlists
60
+ ''' pairlists, lists of dotted pairs
61
61
''' </summary>
62
62
LIST = 2
63
63
''' <summary>
@@ -69,23 +69,23 @@ Namespace Flags
69
69
''' </summary>
70
70
ENV = 4
71
71
''' <summary>
72
- ''' promises
72
+ ''' promises, promises: [un]evaluated closure arguments
73
73
''' </summary>
74
74
PROM = 5
75
75
''' <summary>
76
- ''' language objects
76
+ ''' language objects, language constructs (special lists)
77
77
''' </summary>
78
78
LANG = 6
79
79
''' <summary>
80
80
''' special functions
81
81
''' </summary>
82
82
SPECIAL = 7
83
83
''' <summary>
84
- ''' builtin functions
84
+ ''' builtin functions, builtin non-special forms
85
85
''' </summary>
86
86
BUILTIN = 8
87
87
''' <summary>
88
- ''' internal character strings
88
+ ''' internal character strings, "scalar" string type (internal only)
89
89
''' </summary>
90
90
[CHAR] = 9
91
91
''' <summary>
@@ -114,6 +114,9 @@ Namespace Flags
114
114
DOT = 17
115
115
''' <summary>
116
116
''' make “any” args work
117
+ '''
118
+ ''' Used in specifying types for symbol
119
+ ''' registration To mean anything Is okay
117
120
''' </summary>
118
121
ANY = 18
119
122
''' <summary>
@@ -137,14 +140,19 @@ Namespace Flags
137
140
''' </summary>
138
141
WEAKREF = 23
139
142
''' <summary>
140
- ''' raw vector
143
+ ''' raw bytes vector
141
144
''' </summary>
142
145
RAW = 24
143
146
''' <summary>
144
147
''' S4 classes Not Of simple type
145
148
''' </summary>
146
149
S4 = 25
147
150
151
+ ''' <summary>
152
+ ''' Closure or Builtin or Special
153
+ ''' </summary>
154
+ FUNSXP = 99
155
+
148
156
''' <summary>
149
157
''' Alternative representations
150
158
''' </summary>
Original file line number Diff line number Diff line change @@ -47,13 +47,22 @@ Imports System.ComponentModel
47
47
Namespace Flags
48
48
49
49
''' <summary>
50
- ''' Format of a R file.
50
+ ''' encoding format of a R file.
51
51
''' </summary>
52
52
Public Enum RdataFormats
53
53
Unknown = 0
54
54
55
+ ''' <summary>
56
+ ''' XDR encode
57
+ ''' </summary>
55
58
<Description( "XDR" )> XDR
59
+ ''' <summary>
60
+ ''' ASCII encode
61
+ ''' </summary>
56
62
<Description( "ASCII" )> ASCII
63
+ ''' <summary>
64
+ ''' binary encode
65
+ ''' </summary>
57
66
<Description( "binary" )> binary
58
67
End Enum
59
68
End Namespace
Original file line number Diff line number Diff line change 1
1
2
2
Microsoft Visual Studio Solution File, Format Version 12.00
3
- # Visual Studio Version 16
4
- VisualStudioVersion = 16.0.31911.196
3
+ # Visual Studio Version 17
4
+ VisualStudioVersion = 17.1.32127.271
5
5
MinimumVisualStudioVersion = 10.0.40219.1
6
6
Project ("{778DAE3C-4631-46EA-AA77-85C1314464D9}" ) = "RData.NET5" , "RData.NET5.vbproj" , "{35E5BBE9-B096-46D9-8F04-4E759788EB44}"
7
7
EndProject
You can’t perform that action at this time.
0 commit comments