Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3606090
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T21:12:19+00:00 2026-05-18T21:12:19+00:00

There are heaps of examples of how to clone a Lua table in Lua,

  • 0

There are heaps of examples of how to clone a Lua table in Lua, however I wasn’t able to find any example of how to do it with the native Lua C API. I tried to do it by hand twice, but ended up with a real (although working) mess.

Does anyone have any tips or links on how to elegantly do a shallow copy of a Lua table in the C API?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T21:12:19+00:00Added an answer on May 18, 2026 at 9:12 pm

    What you need to do is define the Lua function, and then break it down into the associated API calls.

    shallow_copy = function(tab)
        local retval = {}
        for k, v in pairs(tab) do
            retval[k] = v
        end
        return retval
    end
    

    So we’re going to need to take the index of a table on the stack and the lua_State.

    void shallow_copy(lua_State* L, int index) {
    
    /*Create a new table on the stack.*/
    
            lua_newtable(L);
    
    /*Now we need to iterate through the table. 
    Going to steal the Lua API's example of this.*/
    
            lua_pushnil(L);
            while(lua_next(L, index) != 0) {
    /*Need to duplicate the key, as we need to set it
    (one pop) and keep it for lua_next (the next pop). Stack looks like table, k, v.*/
    
    
                lua_pushvalue(L, -2);
    /*Now the stack looks like table, k, v, k. 
    But now the key is on top. Settable expects the value to be on top. So we 
    need to do a swaparooney.*/
    
                lua_insert(L, -2);
    
        /*Now we just set them. Stack looks like table,k,k,v, so the table is at -4*/
    
    
    
        lua_settable(L, -4);
    
    /*Now the key and value were set in the table, and we popped off, so we have
    table, k on the stack- which is just what lua_next wants, as it wants to find
    the next key on top. So we're good.*/
    
            }
        }
    

    Now our copied table sits on the top of the stack.

    Christ, the Lua API sucks.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.