pdf_table

Represents a PDF table.

Target type

Signature

1pdf_table(cols::integer, rows::integer, ...)

Represents a PDF table.

pdf_table constructs or identifies a LaiRu value type. pdf_table works with structured document or media data. Keep parsing, transformation, and output steps separate enough that each step can be checked on its own.

Parameters

cols
Required value of type integer. Supply cols positionally unless the signature shows a keyword form.
rows
Required value of type integer. Supply rows positionally unless the signature shows a keyword form.
...
Additional values may be supplied after the earlier arguments.

Examples

Basic call

1pdf_table(3, 4)
The example shows the normal call shape. Adapt variable names, validation, and surrounding error handling to the context.