Bottle.Binary.is_non_empty_binary_shorter_than
You're seeing just the macro
is_non_empty_binary_shorter_than
, go back to Bottle.Binary module for more information.
Guard that passes for a non-empty-binary shorter than max_length
Examples
iex> is_non_empty_binary_shorter_than("foo", 200)
true
iex> is_non_empty_binary_shorter_than("", 2)
false
iex> is_non_empty_binary_shorter_than("foo", 2)
false