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

Defines a matcher that matches against a set of matchers, requiring at least one of them to match

# `t`

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

Describes an instance of this matcher

# `any`

```elixir
@spec any([Machete.Matchable.t()]) :: t()
```

Matches against a set of matchers, requiring at least one of them to match

Takes a list of matchers as its sole (mandatory) argument

Examples:

    iex> assert "abc" ~> any([string(), integer()])
    true

    iex> refute :abc ~> any([string(), integer()])
    false

---

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