View Source Interval.Integer (Interval v0.3.4)

Represents a discrete interval containing Elixir.Integer

Link to this section Summary

Types

t()

An interval of point type Elixir.Integer

Functions

Callback implementation for Interval.Behaviour.discrete?/0.

Callback implementation for Ecto.Type.embed_as/1.

Callback implementation for Ecto.Type.equal?/2.

Callback implementation for Interval.Behaviour.new/1.

Callback implementation for Interval.Behaviour.point_step/2.

Callback implementation for Interval.Behaviour.point_valid?/1.

Callback implementation for Interval.Behaviour.size/1.

Link to this section Types

@type t() :: %Interval.Integer{left: term(), right: term()}

An interval of point type Elixir.Integer

Link to this section Functions

@spec discrete?() :: true

Callback implementation for Interval.Behaviour.discrete?/0.

Callback implementation for Ecto.Type.embed_as/1.

Callback implementation for Ecto.Type.equal?/2.

@spec new(Keyword.t()) :: Interval.t()

Callback implementation for Interval.Behaviour.new/1.

@spec point_compare(integer(), integer()) :: :lt | :eq | :gt

Callback implementation for Interval.Behaviour.point_compare/2.

@spec point_step(integer(), integer()) :: integer()

Callback implementation for Interval.Behaviour.point_step/2.

@spec point_valid?(integer()) :: boolean()

Callback implementation for Interval.Behaviour.point_valid?/1.

@spec size(t()) :: integer() | nil

Callback implementation for Interval.Behaviour.size/1.