# `Faker.Cat`
[🔗](https://github.com/artkay/fakerer/blob/v1.0.0/lib/faker/cat.ex#L1)

Functions for generating Cat names, breeds, and registries

# `breed`

```elixir
@spec breed() :: String.t()
```

Return a random Cat breed

## Examples

    iex> Faker.Cat.breed()
    "Mekong Bobtail"
    iex> Faker.Cat.breed()
    "Suphalak"
    iex> Faker.Cat.breed()
    "Russian White, Black and Tabby"
    iex> Faker.Cat.breed()
    "Asian Semi-longhair"

# `name`

```elixir
@spec name() :: String.t()
```

Return a random Cat name

## Examples

    iex> Faker.Cat.name()
    "Daisy"
    iex> Faker.Cat.name()
    "Lily"
    iex> Faker.Cat.name()
    "Felix"
    iex> Faker.Cat.name()
    "Max"

# `registry`

```elixir
@spec registry() :: String.t()
```

Return a random Cat registry

## Examples

    iex> Faker.Cat.registry()
    "Cat Aficionado Association"
    iex> Faker.Cat.registry()
    "Fédération Internationale Féline"
    iex> Faker.Cat.registry()
    "Fédération Internationale Féline"
    iex> Faker.Cat.registry()
    "Fédération Internationale Féline"

---

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