![]() |
My Project
|
|
Functions | |
AFAPI array | setUnion (const array &first, const array &second, const bool is_unique=false) |
C++ Interface for performing union of two arrays. More... | |
AFAPI af_err | af_set_union (af_array *out, const af_array first, const af_array second, const bool is_unique) |
C Interface for performing union of two arrays. More... | |
AFAPI array | setunion (const array &first, const array &second, const bool is_unique=false) |
C++ Interface for performing union of two arrays. More... | |
Find union of two inputs
AFAPI af_err af_set_union | ( | af_array * | out, |
const af_array | first, | ||
const af_array | second, | ||
const bool | is_unique | ||
) |
C Interface for performing union of two arrays.
[out] | out | will contain the union of first and second |
[in] | first | is the first array |
[in] | second | is the second array |
[in] | is_unique | if true, skips calling unique internally |
AFAPI array af::setunion | ( | const array & | first, |
const array & | second, | ||
const bool | is_unique = false |
||
) |
C++ Interface for performing union of two arrays.
[in] | first | is the first array |
[in] | second | is the second array |
[in] | is_unique | if true, skips calling unique internally |
first
and second
AFAPI array af::setUnion | ( | const array & | first, |
const array & | second, | ||
const bool | is_unique = false |
||
) |
C++ Interface for performing union of two arrays.
[in] | first | is the first array |
[in] | second | is the second array |
[in] | is_unique | if true, skips calling unique internally |
first
and second