# `Exandra.Set`
[🔗](https://github.com/vinniefranco/exandra/blob/v1.1.0/lib/exandra/set.ex#L1)

`Ecto.ParameterizedType` for sets.

## Options

* `:type` (`t:term/0`) - Required. The type of the elements in the set.

## Examples

    schema "users" do
      field :email, :string
      field :roles, Exandra.Set, type: :string
    end

# `t`

```elixir
@type t() :: MapSet.t()
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
