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

Defines a matcher that matches atom values

# `opts`

```elixir
@type opts() :: []
```

Describes the arguments that can be passed to this matcher

# `t`

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

Describes an instance of this matcher

# `atom`

```elixir
@spec atom(opts()) :: t()
```

Matches against atom values

Takes no arguments

Examples:
    
    iex> assert :a ~> atom()
    true

    iex> refute "a" ~> atom()
    false

---

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