@@ -10,6 +10,7 @@ namespace Microsoft.Data.Analysis
10
10
internal partial class PrimitiveColumnContainer < T >
11
11
where T : unmanaged
12
12
{
13
+
13
14
public PrimitiveColumnContainer < T > Add ( PrimitiveColumnContainer < T > right )
14
15
{
15
16
PrimitiveDataFrameColumnArithmetic < T > . Instance . Add ( this , right ) ;
@@ -118,117 +119,112 @@ public PrimitiveColumnContainer<T> RightShift(int value)
118
119
return this ;
119
120
}
120
121
121
- public PrimitiveColumnContainer < T > ElementwiseEquals ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
122
+ public PrimitiveColumnContainer < bool > ElementwiseEquals ( PrimitiveColumnContainer < T > right )
122
123
{
123
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseEquals ( this , right , ret ) ;
124
- return this ;
124
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseEquals ( this , right ) ;
125
125
}
126
126
127
- public PrimitiveColumnContainer < T > ElementwiseEquals ( T scalar , PrimitiveColumnContainer < bool > ret )
127
+ public PrimitiveColumnContainer < bool > ElementwiseEquals ( T scalar )
128
128
{
129
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseEquals ( this , scalar , ret ) ;
130
- return this ;
129
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseEquals ( this , scalar ) ;
131
130
}
132
131
133
- public PrimitiveColumnContainer < T > ElementwiseNotEquals ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
132
+ public PrimitiveColumnContainer < bool > ElementwiseNotEquals ( PrimitiveColumnContainer < T > right )
134
133
{
135
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseNotEquals ( this , right , ret ) ;
136
- return this ;
134
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseNotEquals ( this , right ) ;
137
135
}
138
136
139
- public PrimitiveColumnContainer < T > ElementwiseNotEquals ( T scalar , PrimitiveColumnContainer < bool > ret )
137
+ public PrimitiveColumnContainer < bool > ElementwiseNotEquals ( T scalar )
140
138
{
141
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseNotEquals ( this , scalar , ret ) ;
142
- return this ;
139
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseNotEquals ( this , scalar ) ;
143
140
}
144
141
145
- public PrimitiveColumnContainer < T > ElementwiseGreaterThanOrEqual ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
142
+ public PrimitiveColumnContainer < bool > ElementwiseGreaterThanOrEqual ( PrimitiveColumnContainer < T > right )
146
143
{
147
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThanOrEqual ( this , right , ret ) ;
148
- return this ;
144
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThanOrEqual ( this , right ) ;
149
145
}
150
146
151
- public PrimitiveColumnContainer < T > ElementwiseGreaterThanOrEqual ( T scalar , PrimitiveColumnContainer < bool > ret )
147
+ public PrimitiveColumnContainer < bool > ElementwiseGreaterThanOrEqual ( T scalar )
152
148
{
153
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThanOrEqual ( this , scalar , ret ) ;
154
- return this ;
149
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThanOrEqual ( this , scalar ) ;
155
150
}
156
151
157
- public PrimitiveColumnContainer < T > ElementwiseLessThanOrEqual ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
152
+ public PrimitiveColumnContainer < bool > ElementwiseLessThanOrEqual ( PrimitiveColumnContainer < T > right )
158
153
{
159
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThanOrEqual ( this , right , ret ) ;
160
- return this ;
154
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThanOrEqual ( this , right ) ;
161
155
}
162
156
163
- public PrimitiveColumnContainer < T > ElementwiseLessThanOrEqual ( T scalar , PrimitiveColumnContainer < bool > ret )
157
+ public PrimitiveColumnContainer < bool > ElementwiseLessThanOrEqual ( T scalar )
164
158
{
165
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThanOrEqual ( this , scalar , ret ) ;
166
- return this ;
159
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThanOrEqual ( this , scalar ) ;
167
160
}
168
161
169
- public PrimitiveColumnContainer < T > ElementwiseGreaterThan ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
162
+ public PrimitiveColumnContainer < bool > ElementwiseGreaterThan ( PrimitiveColumnContainer < T > right )
170
163
{
171
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThan ( this , right , ret ) ;
172
- return this ;
164
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThan ( this , right ) ;
173
165
}
174
166
175
- public PrimitiveColumnContainer < T > ElementwiseGreaterThan ( T scalar , PrimitiveColumnContainer < bool > ret )
167
+ public PrimitiveColumnContainer < bool > ElementwiseGreaterThan ( T scalar )
176
168
{
177
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThan ( this , scalar , ret ) ;
178
- return this ;
169
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThan ( this , scalar ) ;
179
170
}
180
171
181
- public PrimitiveColumnContainer < T > ElementwiseLessThan ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
172
+ public PrimitiveColumnContainer < bool > ElementwiseLessThan ( PrimitiveColumnContainer < T > right )
182
173
{
183
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThan ( this , right , ret ) ;
184
- return this ;
174
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThan ( this , right ) ;
185
175
}
186
176
187
- public PrimitiveColumnContainer < T > ElementwiseLessThan ( T scalar , PrimitiveColumnContainer < bool > ret )
177
+ public PrimitiveColumnContainer < bool > ElementwiseLessThan ( T scalar )
188
178
{
189
- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThan ( this , scalar , ret ) ;
190
- return this ;
179
+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThan ( this , scalar ) ;
191
180
}
192
181
193
182
public PrimitiveColumnContainer < T > ReverseAdd ( T scalar )
194
183
{
195
184
PrimitiveDataFrameColumnArithmetic < T > . Instance . Add ( scalar , this ) ;
196
185
return this ;
197
186
}
187
+
198
188
public PrimitiveColumnContainer < T > ReverseSubtract ( T scalar )
199
189
{
200
190
PrimitiveDataFrameColumnArithmetic < T > . Instance . Subtract ( scalar , this ) ;
201
191
return this ;
202
192
}
193
+
203
194
public PrimitiveColumnContainer < T > ReverseMultiply ( T scalar )
204
195
{
205
196
PrimitiveDataFrameColumnArithmetic < T > . Instance . Multiply ( scalar , this ) ;
206
197
return this ;
207
198
}
199
+
208
200
public PrimitiveColumnContainer < T > ReverseDivide ( T scalar )
209
201
{
210
202
PrimitiveDataFrameColumnArithmetic < T > . Instance . Divide ( scalar , this ) ;
211
203
return this ;
212
204
}
205
+
213
206
public PrimitiveColumnContainer < T > ReverseModulo ( T scalar )
214
207
{
215
208
PrimitiveDataFrameColumnArithmetic < T > . Instance . Modulo ( scalar , this ) ;
216
209
return this ;
217
210
}
211
+
218
212
public PrimitiveColumnContainer < T > ReverseAnd ( T scalar )
219
213
{
220
214
PrimitiveDataFrameColumnArithmetic < T > . Instance . And ( scalar , this ) ;
221
215
return this ;
222
216
}
217
+
223
218
public PrimitiveColumnContainer < T > ReverseOr ( T scalar )
224
219
{
225
220
PrimitiveDataFrameColumnArithmetic < T > . Instance . Or ( scalar , this ) ;
226
221
return this ;
227
222
}
223
+
228
224
public PrimitiveColumnContainer < T > ReverseXor ( T scalar )
229
225
{
230
226
PrimitiveDataFrameColumnArithmetic < T > . Instance . Xor ( scalar , this ) ;
231
227
return this ;
232
228
}
233
229
}
234
- }
230
+ }
0 commit comments