diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-01-26 23:26:13 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-01-26 23:26:13 (GMT) |
commit | 740cd597bdeb4e570412f8fa30a97e39bdf56e99 (patch) | |
tree | b43460f45b8ade62fc7bf65851efc1839e693600 /doc/string.n | |
parent | ebc5194e2d1e363c46561ea1303dfb409f58862f (diff) | |
download | tcl-tip_395_with_alt_name.zip tcl-tip_395_with_alt_name.tar.gz tcl-tip_395_with_alt_name.tar.bz2 |
alternative TIP 395 implementation:tip_395_with_alt_name
- more efficient, will not generate bignum
- uses "string is integer" in stead of "string is entier"
- original "string is integer" renamed to "string is int"
Diffstat (limited to 'doc/string.n')
-rw-r--r-- | doc/string.n | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/string.n b/doc/string.n index d960b71..d1956fd 100644 --- a/doc/string.n +++ b/doc/string.n @@ -126,10 +126,13 @@ Any of the forms allowed to \fBTcl_GetBoolean\fR where the value is false. .IP \fBgraph\fR 12 Any Unicode printing character, except space. -.IP \fBinteger\fR 12 +.IP \fBint\fR 12 Any of the valid string formats for a 32-bit integer value in Tcl, with optional surrounding whitespace. In case of under/overflow in the value, 0 is returned and the \fIvarname\fR will contain \-1. +.IP \fBinteger\fR 12 +Any of the valid string formats for an integer value in Tcl as allowed by +\fBTcl_GetBigNnum\fR, with optional surrounding whitespace. .IP \fBlist\fR 12 Any proper list structure, with optional surrounding whitespace. In case of improper list structure, 0 is returned and the \fIvarname\fR |