flu_isopen Function

public function flu_isopen(L) result(is_open)

Arguments

Type IntentOptional Attributes Name
type(flu_State), intent(in) :: L

Return Value logical


Called by

proc~~flu_isopen~~CalledByGraph proc~flu_isopen flu_isopen proc~open_config_buffer open_config_buffer proc~open_config_buffer->proc~flu_isopen proc~open_config_chunk open_config_chunk proc~open_config_chunk->proc~flu_isopen proc~open_config_file open_config_file proc~open_config_file->proc~flu_isopen proc~aot_path_open_table aot_path_open_table proc~aot_path_open_table->proc~open_config_file proc~aot_require_buffer aot_require_buffer proc~aot_require_buffer->proc~open_config_buffer interface~aot_path_open aot_path_open interface~aot_path_open->proc~aot_path_open_table proc~aot_path_open_fun aot_path_open_fun interface~aot_path_open->proc~aot_path_open_fun proc~aot_path_open_fun->proc~aot_path_open_table

Source Code

  function flu_isopen(L) result(is_open)
      logical :: is_open
      type(flu_State), intent(in) :: L

      is_open = c_associated(L%state)
  end function flu_isopen