Mate.Utils.empty-question-mark

You're seeing just the function empty-question-mark, go back to Mate.Utils module for more information.

Specs

empty?(input :: nil | String.t() | list()) :: boolean()

Returns a boolean to determine if the given value is empty.

Examples: iex> Mate.Utils.empty?("") true

iex> Mate.Utils.empty?([]) true

iex> Mate.Utils.empty?(nil) true

iex> Mate.Utils.empty?("Hello") false

iex> Mate.Utils.empty?([1,2,3]) false