XEts.tab2file

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

tab2file(tab, filename)

Specs

tab2file(t() | tab(), filename()) :: t() | :ok | {:error, term()}

Equivalent to tab2file(tab, filename, []).

Link to this function

tab2file(tab, filename, options)

Specs

tab2file(t() | tab(), filename(), keyword()) :: t() | :ok | {:error, term()}

Equivalent to :ets.tab2file/3.

This function generates one file per partition using :ets.tab2file/3, and also generates a master file with the given Filename that holds the information of the created partition files so that they can be recovered by calling :ets.file2tab/1,2.

See also: :ets.tab2file/3.