Ussd.Decisions.NotBetween (Ussd v0.2.0)

Copy Markdown View Source

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

Summary

Types

t()

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

Functions

new(low, high)

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