Postgrex v0.15.3 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

Link to this type

t()

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