MCPcopy Create free account
hub / github.com/apache/arrow-rs / append_option

Method append_option

arrow-array/src/builder/boolean_builder.rs:112–117  ·  view source on GitHub ↗
(&mut self, v: Option<bool>)

Source from the content-addressed store, hash-verified

110 /// Appends an `Option<T>` into the builder
111 #[inline]
112 pub fn append_option(&mut self, v: Option<bool>) {
113 match v {
114 None => self.append_null(),
115 Some(v) => self.append_value(v),
116 };
117 }
118
119 /// Appends a slice of type `T` into the builder
120 #[inline]

Callers 15

test_string_view_equalFunction · 0.45
make_structFunction · 0.45
cast_decimal_to_integerFunction · 0.45
cast_view_to_byteFunction · 0.45
test_dict_to_viewFunction · 0.45
_test_view_to_stringFunction · 0.45
_test_view_to_binaryFunction · 0.45
buildMethod · 0.45
normalize_batchFunction · 0.45

Calls 2

append_nullMethod · 0.45
append_valueMethod · 0.45

Tested by 15

test_string_view_equalFunction · 0.36
make_structFunction · 0.36
test_dict_to_viewFunction · 0.36
test_append_stringFunction · 0.36
test_append_binaryFunction · 0.36