View Source Postgrex.Range (Postgrex v0.16.5)

Struct for PostgreSQL range.

fields

Fields

  • lower
  • upper
  • lower_inclusive
  • upper_inclusive

Link to this section Summary

Link to this section Types

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