[FEA] Add overload for set_null_mask
that accept result of make_null_mask
directly
#13154
Labels
0 - Backlog
In queue waiting for assignment
feature request
New feature or request
good first issue
Good for newcomers
libcudf
Affects libcudf (C++/CUDA) code.
Milestone
Currently, we have the
make_null_mask
API returning both null mask and null count:However, the
set_null_mask
function can't accept that result. As such, we have to pass the result ofmake_null_mask
intoset_null_mask
by two steps:This is a bit inconvenient. We can do that in just one step like this:
In order to do that, we need to have a new overload of
set_null_mask
that accept the return type ofmake_null_mask
such as:The text was updated successfully, but these errors were encountered: