Documentation for IsWhat.
IsWhat
sample_function/1
type?/1
sample_function(boolean()) :: {:ok, String.t()} | {:error, String.t()}
Returns tuple
iex> IsWhat.sample_function(true) {:ok, "Successfully."}
type?(any()) :: String.t()
Defines the type of the given data.
iex> IsWhat.type?(true) "true is boolean."