diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-06-25 12:09:17 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-06-25 12:09:17 +0300 |
commit | 1d2d8398f36f166517e482ad8ee836132a8fe056 (patch) | |
tree | daba9785420a44376bba534c87c82673841b6a2f /doc/gawk.texi | |
parent | 471bd0da9589824f87a3f4e60c2e3951255a8462 (diff) | |
download | egawk-1d2d8398f36f166517e482ad8ee836132a8fe056.tar.gz egawk-1d2d8398f36f166517e482ad8ee836132a8fe056.tar.bz2 egawk-1d2d8398f36f166517e482ad8ee836132a8fe056.zip |
More doc stuff.
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index bdce4be8..c628fb76 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -23289,9 +23289,11 @@ whether a value is numeric or not, so if it matters to you, you may want to add an additional check for that. Traditionally, it has been recommended to check for numeric values using the -test @code{x+0 == x}. This function is superior in two ways: it will not +test @samp{x+0 == x}. This function is superior in two ways: it will not report that unassigned variables contain numeric values; and it recognizes string values with numeric contents. +On the other hand, it uses the @code{typeof()} function +(@pxref{Type Functions}), which is specific to @command{gawk}. @node Data File Management @section @value{DDF} Management |