ggodik opened a new pull request, #13774:
URL: https://github.com/apache/arrow/pull/13774

    - Use `WithBoolWriter` to overwrite the default use of `strconv.FormatBool`
    - uses `strconv.FormatBool` by default
    - `WithBoolWriter(nil)` will not overwrite default
    
   usage
   ```
   w := csv.NewWriter(bytes.NewBuffer(nil),
                   schema,
                csv.WithBoolWriter(func(b bool) string {
                       if b { 
                          return "HELLO"
                       }
                       return "WORLD"
                   }))
   ```


-- 
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

Reply via email to