df_is_initialized Function

private pure function df_is_initialized(this) result(is_init)

Type Bound

data_frame

Arguments

Type IntentOptional Attributes Name
class(data_frame), intent(in) :: this

Return Value logical


Source Code

    pure function df_is_initialized(this) result(is_init)
        class(data_frame), intent(in) :: this
        logical :: is_init
        is_init = this % initialized
    end function df_is_initialized