abandy commented on code in PR #35985:
URL: https://github.com/apache/arrow/pull/35985#discussion_r1225504875


##########
swift/Arrow/Sources/Arrow/ArrowArray.swift:
##########
@@ -182,3 +182,52 @@ public class Date64Array: ArrowArray<Date> {
         }
     }
 }
+
+public class Time32Array: FixedArray<Time32> {}
+public class Time64Array: FixedArray<Time64> {}
+
+public class BinaryArray: ArrowArray<Data> {
+    public struct Options {
+        public var printAsHex = false
+        public var printEncoding: String.Encoding = .utf8;
+    }
+    
+    public var options = Options()
+    
+    public override subscript(_ index: UInt) -> Data? {
+        get{

Review Comment:
   Will update.



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