MCPcopy Create free account
hub / github.com/apache/arrow / IsNull

Function IsNull

cpp/src/arrow/array/data.h:211–211  ·  view source on GitHub ↗

\brief Return the null-ness of a given array element Calling `IsNull(i)` is the same as `!IsValid(i)`.

Source from the content-addressed store, hash-verified

209 ///
210 /// Calling `IsNull(i)` is the same as `!IsValid(i)`.
211 bool IsNull(int64_t i) const { return !IsValid(i); }
212
213 /// \brief Return the validity of a given array element
214 ///

Callers 13

AppendMethod · 0.50
AppendMethod · 0.50
AppendMethod · 0.50
AppendMethod · 0.50
AppendMethod · 0.50
AppendMethod · 0.50
AppendMethod · 0.50
AppendMethod · 0.50
AppendMethod · 0.50
InitMethod · 0.50
RemapInputValuesMethod · 0.50
TEST_FFunction · 0.50

Calls 1

IsValidFunction · 0.70

Tested by 2

TEST_FFunction · 0.40
ASSERT_OK_AND_ASSIGNFunction · 0.40