Buckets

The following code examples demonstrate the built-in bucket type offered by the language. See section [TBD] for details.

Type Declaration

Specific Bucket Name: {*Context Type*}.

Operators

Accessing

Containment

some bucket: {*Context Type*} [context a, context b];

`Index checks.`
some bucket(1?) = true
some bucket(2?) = false

`ID checks.`
some bucket(context a id?) = true
some bucket(context c id?) = false
some bucket: {*Context Type*} [context a, context b];
some bucket(1?, context c id?) = {true, false}

Retrieving

Difference (Remove Elements)

Filter

Intersection

Sort

Union (Appending)

As Variables

Assignment

Declaration

Last updated