View Source TypeResolver.Types.RangeL (TypeResolver v0.1.1)

Representation of the spec of a range-literal, e.g. 1..12

It consists of the following:

  • the lower limit of the range
  • the upper limit of the range

Summary

Types

@type t() :: %TypeResolver.Types.RangeL{from: integer() | nil, to: integer() | nil}