> For the complete documentation index, see [llms.txt](https://fluxusrbx.gitbook.io/fluxus/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fluxusrbx.gitbook.io/fluxus/table-functions.md).

# Table Functions

## \<table> getrawmetatable(\<table> obj)

Returns all the metatables of obj. Returns nil if it does not exist.

## \<bool> setrawmetatable(\<table> obj, \<table> mt)

Sets obj metatable to mt.

## \<void> setreadonly(\<table> obj, \<bool> val)

Will set obj readonly status to val.

## \<void> make\_readonly(\<table> obj)

Will set obj readonly status to true.

## \<void> make\_writeable(\<table> obj)

Will set obj readonly status to false.

## \<bool> isreadonly(\<table> obj)

Returns obj readonly status.
