XEts.rename

You're seeing just the function rename, go back to XEts module for more information.
Link to this function

rename(tab, name)

Specs

rename(t() | tab(), atom()) :: t() | atom()

Equivalent to rename(tab, name, :shards_meta.get(tab))

Link to this function

rename(tab, name, meta)

Specs

rename(t() | tab(), atom(), meta()) :: t() | atom()
rename(tab(), any(), meta()) :: any()

Equivalent to :ets.rename/2.

Renames the table name and all its associated shard tables. If something unexpected occurs during the process, an exception will be raised.

See also: :ets.rename/2.