# `Machete.SupersetMatcher`
[🔗](https://github.com/mtrudel/machete/blob/main/lib/machete/matchers/superset_matcher.ex#L1)

Defines a matcher that matches maps which are a superset of a specified map

# `t`

```elixir
@opaque t()
```

Describes an instance of this matcher

# `superset`

```elixir
@spec superset(map()) :: t()
```

Matches maps which are a superset of a specified map

Takes a map as its sole (mandatory) argument

Examples:
    iex> assert %{a: 1} ~> superset(%{a: 1})
    true

    iex> assert %{a: 1, b: 1} ~> superset(%{a: 1})
    true

---

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