flu_rawgeti Function

public function flu_rawgeti(L, index, n) result(luatype)

Arguments

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

Return Value integer


Calls

proc~~flu_rawgeti~~CallsGraph proc~flu_rawgeti flu_rawgeti interface~lua_rawgeti lua_rawgeti proc~flu_rawgeti->interface~lua_rawgeti

Called by

proc~~flu_rawgeti~~CalledByGraph proc~flu_rawgeti flu_rawgeti proc~aot_reference_to_top aot_reference_to_top proc~aot_reference_to_top->proc~flu_rawgeti proc~aot_fun_ref aot_fun_ref proc~aot_fun_ref->proc~aot_reference_to_top interface~aot_fun_open aot_fun_open interface~aot_fun_open->proc~aot_fun_ref proc~aot_path_open_fun aot_path_open_fun proc~aot_path_open_fun->interface~aot_fun_open interface~aot_path_open aot_path_open interface~aot_path_open->proc~aot_path_open_fun

Source Code

  function flu_rawgeti(L, index, n) result(luatype)
    type(flu_State) :: L
    integer, intent(in) :: index
    integer, intent(in) :: n
    integer :: luatype

    integer(kind=c_int) :: c_index
    integer(kind=c_int) :: c_n
    integer(kind=c_int) :: res

    c_index = int(index, kind=c_int)
    c_n = int(n, kind=c_int)
    res = lua_rawgeti(L%state, c_index, c_n)
    luatype = int(res)
  end function flu_rawgeti