@@ -155,7 +155,7 @@ public TimeColumn(int arrayOffset, int positionCount, long[] values)
155155 positionCount : positionCount ,
156156 valueIsNull : null ,
157157 values : values )
158- { }
158+ { }
159159
160160 public override long GetLong ( int position ) => _values [ position + _arrayOffset ] ;
161161 public override long [ ] GetLongs ( ) => _values . Skip ( _arrayOffset ) . Take ( _positionCount ) . ToArray ( ) ;
@@ -177,7 +177,7 @@ public BinaryColumn(int arrayOffset, int positionCount, bool[] valueIsNull, Bina
177177 positionCount : positionCount ,
178178 valueIsNull : null ,
179179 values : values )
180- { }
180+ { }
181181
182182 public override Binary GetBinary ( int position ) => _values [ position + _arrayOffset ] ;
183183 public override Binary [ ] GetBinaries ( ) => _values . Skip ( _arrayOffset ) . Take ( _positionCount ) . ToArray ( ) ;
@@ -195,7 +195,7 @@ public IntColumn(int arrayOffset, int positionCount, bool[] valueIsNull, int[] v
195195 positionCount : positionCount ,
196196 valueIsNull : null ,
197197 values : values )
198- { }
198+ { }
199199
200200 public override int GetInt ( int position ) => _values [ position + _arrayOffset ] ;
201201 public override int [ ] GetInts ( ) => _values . Skip ( _arrayOffset ) . Take ( _positionCount ) . ToArray ( ) ;
@@ -213,7 +213,7 @@ public FloatColumn(int arrayOffset, int positionCount, bool[] valueIsNull, float
213213 positionCount : positionCount ,
214214 valueIsNull : null ,
215215 values : values )
216- { }
216+ { }
217217
218218 public override float GetFloat ( int position ) => _values [ position + _arrayOffset ] ;
219219 public override float [ ] GetFloats ( ) => _values . Skip ( _arrayOffset ) . Take ( _positionCount ) . ToArray ( ) ;
@@ -231,7 +231,7 @@ public LongColumn(int arrayOffset, int positionCount, bool[] valueIsNull, long[]
231231 positionCount : positionCount ,
232232 valueIsNull : null ,
233233 values : values )
234- { }
234+ { }
235235
236236 public override long GetLong ( int position ) => _values [ position + _arrayOffset ] ;
237237 public override long [ ] GetLongs ( ) => _values . Skip ( _arrayOffset ) . Take ( _positionCount ) . ToArray ( ) ;
@@ -249,7 +249,7 @@ public DoubleColumn(int arrayOffset, int positionCount, bool[] valueIsNull, doub
249249 positionCount : positionCount ,
250250 valueIsNull : null ,
251251 values : values )
252- { }
252+ { }
253253
254254 public override double GetDouble ( int position ) => _values [ position + _arrayOffset ] ;
255255 public override double [ ] GetDoubles ( ) => _values . Skip ( _arrayOffset ) . Take ( _positionCount ) . ToArray ( ) ;
@@ -267,7 +267,7 @@ public BooleanColumn(int arrayOffset, int positionCount, bool[] valueIsNull, boo
267267 positionCount : positionCount ,
268268 valueIsNull : null ,
269269 values : values )
270- { }
270+ { }
271271
272272 public override bool GetBoolean ( int position ) => _values [ position + _arrayOffset ] ;
273273 public override bool [ ] GetBooleans ( ) => _values . Skip ( _arrayOffset ) . Take ( _positionCount ) . ToArray ( ) ;
@@ -321,4 +321,4 @@ public RunLengthEncodedColumn(Column value, int positionCount)
321321
322322 public override int GetPositionCount ( ) => _positionCount ;
323323 }
324- }
324+ }
0 commit comments