flu_insert Subroutine

public subroutine flu_insert(L, index)

Arguments

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

Calls

proc~~flu_insert~~CallsGraph proc~flu_insert flu_insert interface~lua_rotate lua_rotate proc~flu_insert->interface~lua_rotate

Called by

proc~~flu_insert~~CalledByGraph proc~flu_insert flu_insert proc~aot_fun_put_top aot_fun_put_top proc~aot_fun_put_top->proc~flu_insert proc~aot_table_set_top aot_table_set_top proc~aot_table_set_top->proc~flu_insert interface~aot_fun_put aot_fun_put interface~aot_fun_put->proc~aot_fun_put_top

Source Code

  subroutine flu_insert(L, index)
    type(flu_state) :: L
    integer :: index

    integer(kind=c_int) :: c_index

    c_index = int(index, kind = c_int)
    call lua_rotate(L%state, c_index, 1_c_int)
  end subroutine flu_insert