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:
parent
6d3ecd5b70
commit
28eecadf33
1 changed files with 32 additions and 0 deletions
|
@ -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.
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue