PropCheck.BasicTypes.float

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

Specs

float() :: type()

All floats, i.e. float(:inf, :inf)

Specs

float(ext_float(), ext_float()) :: type()

All floats between low and high, bounds included.

low and high must be Elixir expressions that evaluate to floats, 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.0 if low =< 0.0 =< high, or towards the bound with the smallest absolute value otherwise.