1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-04-21 17:42:26 -04:00

Ruby: add doc comments

This commit is contained in:
Alex Kotov 2022-01-30 17:40:21 +05:00
parent 6d3ecd5b70
commit 28eecadf33
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -163,6 +163,38 @@ module KernAux
# @see .utoa Convert unsigned integers
##
##
# @!method utoa10(number)
# Convert `uint64_t` to a decimal string.
#
# @param number [Integer] a number between 0 and `UINT64_MAX`
# @return [String]
##
##
# @!method itoa10(number)
# Convert `int64_t` to a decimal string.
#
# @param number [Integer] a number between `INT64_MIN` and `INT64_MAX`
# @return [String]
##
##
# @!method utoa16(number)
# Convert `uint64_t` to a hexadecimal string.
#
# @param number [Integer] a number between 0 and `UINT64_MAX`
# @return [String]
##
##
# @!method itoa16(number)
# Convert `int64_t` to a hexadecimal string.
#
# @param number [Integer] a number between `INT64_MIN` and `INT64_MAX`
# @return [String]
##
##
# Our base class for runtime errors.
#