[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Bug report in length of simple table
- From: Dibyendu Majumdar <mobile@...>
- Date: Wed, 14 Sep 2016 17:04:37 +0100
On 14 September 2016 at 15:04, Roberto Ierusalimschy
<roberto@inf.puc-rio.br> wrote:
> --------------------------------------------------------------------------
> A *border* in a table 't' is any non-negative integer such that
>
> (border == 0 or t[border] ~= nil) and t[border + 1] == nil
>
> That is, a border points to any position in a table where a non-nil value
> is followed by a nil value (or to 0, when position 1 is empty).
>
How about using the term 'bound' or 'upper bound'?
Regards