> For the complete documentation index, see [llms.txt](https://docs.cheddar.vihan.org/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cheddar.vihan.org/docs/functions/operations.md).

# Operations

Cheddar, to suit the functional paradigm, brings various functional operators. These are details throughout this section.

> ## Info::Assignment Operators
>
> Assignment operators with functions work just as well as with other functions
>
> ```swift
> let f = 10
> f &= (%)
>
> f(16) == 6
> ```
