/usr/share/idl/thunderbird/nsIArrayExtensions.idl is in thunderbird-dev 1:52.8.0-1~deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsIArray.idl"
/**
* Helper interface for allowing scripts to treat nsIArray instances as if
* they were nsISupportsArray instances while iterating.
*
* nsISupportsArray is convenient to iterate over in JavaScript:
*
* for (let i = 0; i < array.Count(); ++i) {
* let elem = array.GetElementAt(i);
* ...
* }
*
* but doing the same with nsIArray is somewhat less convenient, since
* queryElementAt is not nearly so nice to use from JavaScript. So we provide
* this extension interface so interfaces that currently return
* nsISupportsArray can start returning nsIArrayExtensions and all JavaScript
* should Just Work. Eventually we'll roll this interface into nsIArray
* itself, possibly getting rid of the Count() method, as it duplicates
* nsIArray functionality.
*/
[scriptable, uuid(261d442e-050c-453d-8aaa-b3f23bcc528b)]
interface nsIArrayExtensions : nsIArray
{
/**
* Count()
*
* Retrieves the length of the array. This is an alias for the
* |nsIArray.length| attribute.
*/
uint32_t Count();
/**
* GetElementAt()
*
* Retrieve a specific element of the array. null is a valid result for
* this method.
*
* Note: If the index is out of bounds null will be returned.
* This differs from the behavior of nsIArray.queryElementAt() which
* will throw if an invalid index is specified.
*
* @param index position of element
*/
nsISupports GetElementAt(in uint32_t index);
};
|