asmirnov82 commented on code in PR #35342: URL: https://github.com/apache/arrow/pull/35342#discussion_r1190264244
########## csharp/src/Apache.Arrow/BitUtility.cs: ########## @@ -62,6 +62,64 @@ public static void SetBit(Span<byte> data, int index, bool value) : (byte)(data[idx] & ~BitMask[mod]); } + /// <summary> + /// Set the number of bits in a span of bytes starting + /// at a specific index, and limiting to length. + /// </summary> + /// <param name="data">Span to set bits value.</param> + /// <param name="offset">Bit index to start counting from.</param> + /// <param name="length">Maximum of bits in the span to consider.</param> + public static void SetBits(Span<byte> data, int index, int length, bool value) Review Comment: Fixed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org