Postgrex v0.15.5 Postgrex.Range View Source

Struct for PostgreSQL range.

Fields

  • lower
  • upper
  • lower_inclusive
  • upper_inclusive

Link to this section Summary

Link to this section Types

Specs

t() :: %Postgrex.Range{
  lower: term() | :empty | :unbound,
  lower_inclusive: boolean(),
  upper: term() | :empty | :unbound,
  upper_inclusive: boolean()
}