EQRCode.Encode.version

You're seeing just the function version, go back to EQRCode.Encode module for more information.
Link to this function

version(bin, error_correction_level)

View Source

Specs

version(binary(), EQRCode.SpecTable.error_correction_level()) ::
  {:error, :no_version_found} | {:ok, EQRCode.SpecTable.version()}

Returns the lowest version for the given binary.

Example:

iex> EQRCode.Encode.version("hello world!", :l)
{:ok, 1}