# `Ussd.Decisions.Between`
[🔗](https://github.com/spesohq/ussd/blob/main/lib/ussd/decisions/between.ex#L1)

Matches when `low <= input <= high` (numeric-aware, so `Between.new(1, 10)` matches
`"9"` and `"10"` correctly instead of comparing them as strings).

# `t`

```elixir
@type t() :: %Ussd.Decisions.Between{
  high: String.t() | number(),
  low: String.t() | number()
}
```

# `new`

```elixir
@spec new(String.t() | number(), String.t() | number()) :: t()
```

---

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