table delete ...

Prev Next

Function Names

table delete, table delete silently

Description

This function deletes tables entirely. The function table delete silently suppresses exceptions in case the table names are no longer existing.

Call as: procedure

Restrictions

Indirect parameter passing is enabled

Parameter count

Min. 1

Parameters

No.TypeDescription
Min. 1
input
string name of existing table

Names of existing tables are expected.

Examples

      echo("Create and delete tables");
      table create( a );
      table delete silently ( a, b ); // 'b' does not exist, but done silently.

Output

Create and delete tables
Try it yourself: Open LIB_Function_table_delete.b4p in B4P_Examples.zip. Decompress before use.

See also

table clear