flu_isTable Function

public function flu_isTable(L, index) result(is_Table)

Arguments

Type IntentOptional Attributes Name
type(flu_State) :: L
integer :: index

Return Value logical


Calls

proc~~flu_istable~~CallsGraph proc~flu_istable flu_isTable interface~lua_type lua_type proc~flu_istable->interface~lua_type

Called by

proc~~flu_istable~~CalledByGraph proc~flu_istable flu_isTable proc~aot_table_top aot_table_top proc~aot_table_top->proc~flu_istable proc~aot_table_open aot_table_open proc~aot_table_open->proc~aot_table_top proc~get_top_double_v get_top_double_v proc~get_top_double_v->proc~aot_table_top proc~get_top_double_vvect get_top_double_vvect proc~get_top_double_vvect->proc~aot_table_top proc~get_top_extdouble_v get_top_extdouble_v proc~get_top_extdouble_v->proc~aot_table_top proc~get_top_extdouble_vvect get_top_extdouble_vvect proc~get_top_extdouble_vvect->proc~aot_table_top proc~get_top_integer_v get_top_integer_v proc~get_top_integer_v->proc~aot_table_top proc~get_top_integer_vvect get_top_integer_vvect proc~get_top_integer_vvect->proc~aot_table_top proc~get_top_logical_v get_top_logical_v proc~get_top_logical_v->proc~aot_table_top proc~get_top_logical_vvect get_top_logical_vvect proc~get_top_logical_vvect->proc~aot_table_top proc~get_top_long_v get_top_long_v proc~get_top_long_v->proc~aot_table_top proc~get_top_long_vvect get_top_long_vvect proc~get_top_long_vvect->proc~aot_table_top proc~get_top_quadruple_v get_top_quadruple_v proc~get_top_quadruple_v->proc~aot_table_top proc~get_top_quadruple_vvect get_top_quadruple_vvect proc~get_top_quadruple_vvect->proc~aot_table_top proc~get_top_real_v get_top_real_v proc~get_top_real_v->proc~aot_table_top proc~get_top_real_vvect get_top_real_vvect proc~get_top_real_vvect->proc~aot_table_top proc~get_top_string_v get_top_string_v proc~get_top_string_v->proc~aot_table_top proc~get_top_string_vvect get_top_string_vvect proc~get_top_string_vvect->proc~aot_table_top interface~aot_top_get_val~2 aot_top_get_val interface~aot_top_get_val~2->proc~get_top_quadruple_vvect interface~aot_top_get_val~3 aot_top_get_val interface~aot_top_get_val~3->proc~get_top_quadruple_v interface~aot_top_get_val~4 aot_top_get_val interface~aot_top_get_val~4->proc~get_top_double_vvect interface~aot_top_get_val~4->proc~get_top_integer_vvect interface~aot_top_get_val~4->proc~get_top_logical_vvect interface~aot_top_get_val~4->proc~get_top_long_vvect interface~aot_top_get_val~4->proc~get_top_real_vvect interface~aot_top_get_val~4->proc~get_top_string_vvect interface~aot_top_get_val~5 aot_top_get_val interface~aot_top_get_val~5->proc~get_top_double_v interface~aot_top_get_val~5->proc~get_top_integer_v interface~aot_top_get_val~5->proc~get_top_logical_v interface~aot_top_get_val~5->proc~get_top_long_v interface~aot_top_get_val~5->proc~get_top_real_v interface~aot_top_get_val~5->proc~get_top_string_v interface~aot_top_get_val~6 aot_top_get_val interface~aot_top_get_val~6->proc~get_top_extdouble_vvect interface~aot_top_get_val~7 aot_top_get_val interface~aot_top_get_val~7->proc~get_top_extdouble_v proc~aot_path_open_table aot_path_open_table proc~aot_path_open_table->proc~aot_table_open proc~aot_require_buffer aot_require_buffer proc~aot_require_buffer->proc~aot_table_open 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_isTable(L, index) result(is_Table)
    type(flu_State) :: L
    integer         :: index
    logical         :: is_Table

    integer(kind=c_int) :: c_index

    c_index = int(index, kind = c_int)
    ! Only defined as a Macro, using lua_type:
    is_Table = (lua_type(L%state, c_index) == LUA_TTABLE)
  end function flu_isTable