spade-0.1.0.1: docs/functions/dictionary.md
### Dictionary Functions
#### haskey
Checks if a dictionary contains a given key.
Example:
```
let mydict = { name: "John", age: 33 }
inspect(haskey(mydict, "address"))
getkey()
```
#### Getting number of items in dictionary
Use #link: size#