Document strval and intval

This commit is contained in:
kpcyrd
2020-02-28 16:48:00 +01:00
parent 1ab5972f90
commit 621bd9304c

View File

@@ -517,6 +517,13 @@ Log an info to the terminal.
info('ohai')
intval
------
Parse a number from a string.
x = strval('1234')
json_decode
-----------
@@ -1093,6 +1100,13 @@ Parse a date into a unix timestamp, see `strftime rules`_.
.. _strftime rules: https://docs.rs/chrono/0.4.6/chrono/format/strftime/index.html
strval
------
Convert a number into a string.
x = strval(1234)
time_unix
---------