[ 
https://issues.apache.org/jira/browse/ARROW-2361?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16420656#comment-16420656
 ] 

ASF GitHub Bot commented on ARROW-2361:
---------------------------------------

andygrove commented on issue #1804: ARROW-2361: [Rust] Starting point for a 
native Rust implementation of Arrow
URL: https://github.com/apache/arrow/pull/1804#issuecomment-377559218
 
 
   I just implemented the ability to compare two same-typed arrays using 
closures. For example:
   
   ```
       fn test_array_eq() {
           let a = Array::from(vec![1,2,3,4,5]);
           let b = Array::from(vec![5,4,3,2,1]);
           let c = a.compare_array(&b, &|a: i32,b: i32| a == b).unwrap();
           assert_eq!(c, vec![false,false,true,false,false]);
       }
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> [Rust] Start native Rust Implementation
> ---------------------------------------
>
>                 Key: ARROW-2361
>                 URL: https://issues.apache.org/jira/browse/ARROW-2361
>             Project: Apache Arrow
>          Issue Type: New Feature
>          Components: Rust
>            Reporter: Andy Grove
>            Priority: Major
>              Labels: pull-request-available
>
> I'm creating this Jira to track work to donate an work-in-progress native 
> Rust implementation of Arrow.
> I am actively developing this and relying on it for the memory model of my 
> DataFusion project. I would like to donate the code I have now and start 
> working on it under the Apache Arrow project.
> Here is the PR: https://github.com/apache/arrow/pull/1804
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to