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