spade-0.1.0.7: 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()
```
#### addkey
Adds a new key to the dictionary.
#### getkey
Adds a new key to the dictionary.
#### Getting number of items in dictionary
Use #link: size#