readlink: illegal option -- f
usage: readlink [-n] [file ...]
CMake Error: The source directory "/Users/ytakeuch/azure-rtos" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
Error: could not load cache
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
cmake : Depends: libssl1.0.0 (>= 1.0.2~beta3) but it is not installable
E: Unable to correct problems, you have held broken packages.
iex> h trunc
def trunc(number)
@spec trunc(value) :: value when value: integer()
@spec trunc(float()) :: integer()
guard: true
Returns the integer part of number.
Allowed in guard tests. Inlined by the compiler.
## Examples
iex> trunc(5.4)
5
iex> trunc(-5.99)
-5
iex> trunc(-5)
-5