PropCheck.BasicTypes.integer

You're seeing just the function integer, go back to PropCheck.BasicTypes module for more information.

Specs

integer() :: type()

All integers, i.e. integer(:inf, :inf)

Specs

integer(ext_int(), ext_int()) :: type()

All integers between low and high, bounds included.

low and high must be Elixir expressions that evaluate to integers, with low =< high. Additionally, low and high may have the value :inf, in which case they represent minus infinity and plus infinity respectively. Instances shrink towards 0 if low =< 0 =< high, or towards the bound with the smallest absolute value otherwise.