Postgrex v0.14.0-rc.1 Postgrex.Range View Source

Struct for Postgres 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()
}