> ## Documentation Index
> Fetch the complete documentation index at: https://docs.turntable.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Map Operations

## dict.contains

Return True if the map contains the specified key and False otherwise.

<Accordion title="Parameters">
  <ParamField body="key" type="int | str | IntegerValue | StringValue" required={true} />
</Accordion>

## dict.get

Return the value of the specified key. If the key is not found, the default value is returned.

<Accordion title="Parameters">
  <ParamField body="key" type="Value" required={true} />

  <ParamField body="default" type="Value | None" required={false} />
</Accordion>

## dict.keys

Return the keys of the map.

## dict.len

Return the length of the map.

## dict.values

Return the values of the map.
