View Source Interval.Decimal (Interval v0.3.4)

Represents a continuous interval containing Elixir.Decimal

Link to this section Summary

Types

t()

An interval of point type Elixir.Decimal

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.Decimal{left: term(), right: term()}

An interval of point type Elixir.Decimal

Link to this section Functions

@spec discrete?() :: false

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(Decimal.t(), Decimal.t()) :: :lt | :eq | :gt

Callback implementation for Interval.Behaviour.point_compare/2.

@spec point_step(Decimal.t(), any()) :: nil

Callback implementation for Interval.Behaviour.point_step/2.

@spec point_valid?(Decimal.t()) :: boolean()

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

@spec size(t()) :: Decimal.t() | nil

Callback implementation for Interval.Behaviour.size/1.