mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 23:08:40 +02:00
This commit is contained in:
@@ -2215,11 +2215,11 @@ and time separator characters for \fBDATE\fR and \fBTIME\fR constants apply
|
|||||||
also to \fBDATETIME\fR constants.
|
also to \fBDATETIME\fR constants.
|
||||||
.RE
|
.RE
|
||||||
.PP
|
.PP
|
||||||
.B ZERO VALUES
|
.B ZERO VALUES AND TRUE/FALSE
|
||||||
.PP
|
.PP
|
||||||
All types have an associated \fIzero value\fR, which is
|
All types have an associated \fIzero value\fR, which is treated as
|
||||||
treated as \fIfalse\fR by the IF command and the logical operators. The
|
\fIfalse\fR by the IF command, the IIF function, and the logical
|
||||||
zero values are:
|
operators. The zero values are:
|
||||||
.PP
|
.PP
|
||||||
.RS
|
.RS
|
||||||
.PP
|
.PP
|
||||||
@@ -3317,14 +3317,14 @@ out. The stripping algorithm is fairly naive; the function starts
|
|||||||
stripping characters when it encounters a "<" and it stops stripping
|
stripping characters when it encounters a "<" and it stops stripping
|
||||||
when it encounters a ">".
|
when it encounters a ">".
|
||||||
.TP
|
.TP
|
||||||
.B iif(si_test1, x_arg1, [si_test2, x_arg2,...], x_default)
|
.B iif(x_test1, x_arg1, [x_test2, x_arg2,...], x_default)
|
||||||
If \fItest1\fR is not zero or the null string, returns \fIarg1\fR.
|
If \fItest1\fR is true, returns \fIarg1\fR. Otherwise, if \fItest2\fR
|
||||||
Otherwise, if \fItest2\fR is not zero or the null string, returns
|
is true, returns \fIarg2\fR, and so on. If all of the \fItest\fR
|
||||||
\fIarg2\fR, and so on. If all of the \fItest\fR arguments are false,
|
arguments are false, returns \fIdefault\fR. Note that all arguments
|
||||||
returns \fIdefault\fR. Note that all arguments are \fIalways\fR evaluated.
|
are \fIalways\fR evaluated. This function accepts an odd number of
|
||||||
This function accepts an odd number of arguments - note that prior to version
|
arguments - note that prior to version 03.00.05 of \fBRemind\fR, it
|
||||||
03.00.05 of \fBRemind\fR, it accepted 3 arguments only. The 3-argument
|
accepted 3 arguments only. The 3-argument version of \fBiif()\fR is
|
||||||
version of \fBiif()\fR is compatible with previous versions of \fBRemind\fR.
|
compatible with previous versions of \fBRemind\fR.
|
||||||
.TP
|
.TP
|
||||||
.B index(s_search, s_target [,i_start)
|
.B index(s_search, s_target [,i_start)
|
||||||
Returns an \fBINT\fR that is the location of \fItarget\fR in the
|
Returns an \fBINT\fR that is the location of \fItarget\fR in the
|
||||||
|
|||||||
Reference in New Issue
Block a user