Enum.empty-question-mark

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

Specs

empty?(t()) :: boolean()

Determines if the enumerable is empty.

Returns true if enumerable is empty, otherwise false.

Examples

iex> Enum.empty?([])
true

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