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

Matches when the input is outside `[low, high]` (numeric-aware).

# `t`

```elixir
@type t() :: %Ussd.Decisions.NotBetween{
  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*
