parquet_string_column_is_null Interface

public interface parquet_string_column_is_null

Typed form of %is_null, generic over an int32 or int64 index/count argument.


Module Procedures

private function parquet_string_column_is_null_i32(self, i) result(res)

int32 specific of is_null; see the is_null generic.

Arguments

Type IntentOptional Attributes Name
type(parquet_string_column), intent(in) :: self

the column.

integer(kind=int32), intent(in) :: i

1-based element index.

Return Value logical

private function parquet_string_column_is_null_i64(self, i) result(res)

int64 specific of is_null: whether element i is null (always safe -- the primary null guard).

Arguments

Type IntentOptional Attributes Name
type(parquet_string_column), intent(in) :: self

the column.

integer(kind=int64), intent(in) :: i

1-based element index.

Return Value logical