Returns an AsyncOperationFunction that yields only the non-null / non-undefined entries of the source Iterable.
The type of the elements in the source Iterable.
An AsyncOperationFunction that yields only the non-null / non-undefined entries of the source Iterable.
const result = notNullAsync<number>([1, 2, null, undefined, 3]);console.log(result); // [1, 2, 3] Copy
const result = notNullAsync<number>([1, 2, null, undefined, 3]);console.log(result); // [1, 2, 3]
Returns an AsyncOperationFunction that yields only the non-null / non-undefined entries of the source Iterable.