@@ -10,6 +10,7 @@ namespace Microsoft.Data.Analysis
1010 internal partial class PrimitiveColumnContainer < T >
1111 where T : unmanaged
1212 {
13+
1314 public PrimitiveColumnContainer < T > Add ( PrimitiveColumnContainer < T > right )
1415 {
1516 PrimitiveDataFrameColumnArithmetic < T > . Instance . Add ( this , right ) ;
@@ -118,117 +119,112 @@ public PrimitiveColumnContainer<T> RightShift(int value)
118119 return this ;
119120 }
120121
121- public PrimitiveColumnContainer < T > ElementwiseEquals ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
122+ public PrimitiveColumnContainer < bool > ElementwiseEquals ( PrimitiveColumnContainer < T > right )
122123 {
123- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseEquals ( this , right , ret ) ;
124- return this ;
124+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseEquals ( this , right ) ;
125125 }
126126
127- public PrimitiveColumnContainer < T > ElementwiseEquals ( T scalar , PrimitiveColumnContainer < bool > ret )
127+ public PrimitiveColumnContainer < bool > ElementwiseEquals ( T scalar )
128128 {
129- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseEquals ( this , scalar , ret ) ;
130- return this ;
129+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseEquals ( this , scalar ) ;
131130 }
132131
133- public PrimitiveColumnContainer < T > ElementwiseNotEquals ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
132+ public PrimitiveColumnContainer < bool > ElementwiseNotEquals ( PrimitiveColumnContainer < T > right )
134133 {
135- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseNotEquals ( this , right , ret ) ;
136- return this ;
134+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseNotEquals ( this , right ) ;
137135 }
138136
139- public PrimitiveColumnContainer < T > ElementwiseNotEquals ( T scalar , PrimitiveColumnContainer < bool > ret )
137+ public PrimitiveColumnContainer < bool > ElementwiseNotEquals ( T scalar )
140138 {
141- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseNotEquals ( this , scalar , ret ) ;
142- return this ;
139+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseNotEquals ( this , scalar ) ;
143140 }
144141
145- public PrimitiveColumnContainer < T > ElementwiseGreaterThanOrEqual ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
142+ public PrimitiveColumnContainer < bool > ElementwiseGreaterThanOrEqual ( PrimitiveColumnContainer < T > right )
146143 {
147- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThanOrEqual ( this , right , ret ) ;
148- return this ;
144+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThanOrEqual ( this , right ) ;
149145 }
150146
151- public PrimitiveColumnContainer < T > ElementwiseGreaterThanOrEqual ( T scalar , PrimitiveColumnContainer < bool > ret )
147+ public PrimitiveColumnContainer < bool > ElementwiseGreaterThanOrEqual ( T scalar )
152148 {
153- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThanOrEqual ( this , scalar , ret ) ;
154- return this ;
149+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThanOrEqual ( this , scalar ) ;
155150 }
156151
157- public PrimitiveColumnContainer < T > ElementwiseLessThanOrEqual ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
152+ public PrimitiveColumnContainer < bool > ElementwiseLessThanOrEqual ( PrimitiveColumnContainer < T > right )
158153 {
159- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThanOrEqual ( this , right , ret ) ;
160- return this ;
154+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThanOrEqual ( this , right ) ;
161155 }
162156
163- public PrimitiveColumnContainer < T > ElementwiseLessThanOrEqual ( T scalar , PrimitiveColumnContainer < bool > ret )
157+ public PrimitiveColumnContainer < bool > ElementwiseLessThanOrEqual ( T scalar )
164158 {
165- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThanOrEqual ( this , scalar , ret ) ;
166- return this ;
159+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThanOrEqual ( this , scalar ) ;
167160 }
168161
169- public PrimitiveColumnContainer < T > ElementwiseGreaterThan ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
162+ public PrimitiveColumnContainer < bool > ElementwiseGreaterThan ( PrimitiveColumnContainer < T > right )
170163 {
171- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThan ( this , right , ret ) ;
172- return this ;
164+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThan ( this , right ) ;
173165 }
174166
175- public PrimitiveColumnContainer < T > ElementwiseGreaterThan ( T scalar , PrimitiveColumnContainer < bool > ret )
167+ public PrimitiveColumnContainer < bool > ElementwiseGreaterThan ( T scalar )
176168 {
177- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThan ( this , scalar , ret ) ;
178- return this ;
169+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseGreaterThan ( this , scalar ) ;
179170 }
180171
181- public PrimitiveColumnContainer < T > ElementwiseLessThan ( PrimitiveColumnContainer < T > right , PrimitiveColumnContainer < bool > ret )
172+ public PrimitiveColumnContainer < bool > ElementwiseLessThan ( PrimitiveColumnContainer < T > right )
182173 {
183- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThan ( this , right , ret ) ;
184- return this ;
174+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThan ( this , right ) ;
185175 }
186176
187- public PrimitiveColumnContainer < T > ElementwiseLessThan ( T scalar , PrimitiveColumnContainer < bool > ret )
177+ public PrimitiveColumnContainer < bool > ElementwiseLessThan ( T scalar )
188178 {
189- PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThan ( this , scalar , ret ) ;
190- return this ;
179+ return PrimitiveDataFrameColumnArithmetic < T > . Instance . ElementwiseLessThan ( this , scalar ) ;
191180 }
192181
193182 public PrimitiveColumnContainer < T > ReverseAdd ( T scalar )
194183 {
195184 PrimitiveDataFrameColumnArithmetic < T > . Instance . Add ( scalar , this ) ;
196185 return this ;
197186 }
187+
198188 public PrimitiveColumnContainer < T > ReverseSubtract ( T scalar )
199189 {
200190 PrimitiveDataFrameColumnArithmetic < T > . Instance . Subtract ( scalar , this ) ;
201191 return this ;
202192 }
193+
203194 public PrimitiveColumnContainer < T > ReverseMultiply ( T scalar )
204195 {
205196 PrimitiveDataFrameColumnArithmetic < T > . Instance . Multiply ( scalar , this ) ;
206197 return this ;
207198 }
199+
208200 public PrimitiveColumnContainer < T > ReverseDivide ( T scalar )
209201 {
210202 PrimitiveDataFrameColumnArithmetic < T > . Instance . Divide ( scalar , this ) ;
211203 return this ;
212204 }
205+
213206 public PrimitiveColumnContainer < T > ReverseModulo ( T scalar )
214207 {
215208 PrimitiveDataFrameColumnArithmetic < T > . Instance . Modulo ( scalar , this ) ;
216209 return this ;
217210 }
211+
218212 public PrimitiveColumnContainer < T > ReverseAnd ( T scalar )
219213 {
220214 PrimitiveDataFrameColumnArithmetic < T > . Instance . And ( scalar , this ) ;
221215 return this ;
222216 }
217+
223218 public PrimitiveColumnContainer < T > ReverseOr ( T scalar )
224219 {
225220 PrimitiveDataFrameColumnArithmetic < T > . Instance . Or ( scalar , this ) ;
226221 return this ;
227222 }
223+
228224 public PrimitiveColumnContainer < T > ReverseXor ( T scalar )
229225 {
230226 PrimitiveDataFrameColumnArithmetic < T > . Instance . Xor ( scalar , this ) ;
231227 return this ;
232228 }
233229 }
234- }
230+ }
0 commit comments