Pudu programming language
Menu
API reference

Std.Db.Schema.column

1 declaration

fn

column: Str -> Str -> Std.Db.Schema.Column[T]

This is a callable function.

What it does

A column of a table.

Declared once, in a module that stands for the table, so every query names

it through that module — which is what makes the editor offer it and a

wrong name refuse to compile.

Read the signature

  • The text after the name is the type checked by Pudu.
  • Read arrows from left to right: inputs come first, and the final type is returned.
  • Names inside [ ] are type arguments, such as the item type held by a collection.

Back to Std.Db.SchemaSearch related declarations