tustvold commented on code in PR #3945:
URL: https://github.com/apache/arrow-rs/pull/3945#discussion_r1148524623


##########
arrow-buffer/src/bigint.rs:
##########
@@ -152,6 +152,11 @@ impl i256 {
         (high_negative == low_negative && high_valid).then_some(self.low as 
i128)
     }
 
+    /// Wraps this `i256` into an `i128`
+    pub fn wrapping_to_i128(self) -> i128 {

Review Comment:
   ```suggestion
       pub fn as_i128(self) -> i128 {
   ```
   



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to