table(P;)

Produces a table value from a dictionary.

Syntax

table(P;K)

Input

Argument Type Description
P any The name of a package variable
K any Reserved for future use.

Return Value

The table value of the dictionary.

Example

In the following example, we create three lists: foo, bar, and baz. table(P;) produces a table from the package of lists.
<block foo="{lst(1 2 3)}" bar="{lst('Larry' 'Curly' 'Moe')}" 
    baz="{lst('Fine' 'Howard' 'Howard')}">

<table data="{table(pkg('num' 'fname' 'lname';@foo @bar @baz);)}"/>
</block>