You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: vortex-array/src/arrays/varbinview/mod.rs
+3
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,9 @@ impl BinaryView {
119
119
///
120
120
/// Depending on the length of the provided value either a new inlined
121
121
/// or a reference view will be constructed.
122
+
///
123
+
/// Adapted from arrow-rs https://github.com/apache/arrow-rs/blob/f4fde769ab6e1a9b75f890b7f8b47bc22800830b/arrow-array/src/builder/generic_bytes_view_builder.rs#L524
124
+
/// Explicitly enumerating inlined view produces code that avoids calling generic `ptr::copy_non_interleave` that's slower than explicit stores
0 commit comments