Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 uid=1(daemon) gid=1(daemon) grupos=1(daemon) Safe-mode: OFF (not secure) /opt/apex_led/www/js/shindig/features/src/main/javascript/features/opensocial-reference/ drwxrwxr-x | |
| Viewing file: Select action/file-type: /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*global opensocial */
/**
* @fileoverview Collection of multiple objects with useful accessors.
*
* May also represent subset of a larger collection (i.e. page 1 of 10), and
* contain information about the larger collection.
*/
/**
* @class
* Collection of multiple objects with useful accessors.
* May also represent subset of a larger collection
* (for example, page 1 of 10)
* and contain information about the larger collection.
*
* @name opensocial.Collection
*/
/**
* Create a collection.
*
* @private
* @constructor
*/
opensocial.Collection = function(array, opt_offset, opt_totalSize) {
this.array_ = array || [];
this.offset_ = opt_offset || 0;
this.totalSize_ = opt_totalSize || this.array_.length;
};
/**
* Finds the entry with the given ID value, or returns null if none is found.
* @param {String} id The ID to look for
* @return {Object?} The data
*/
opensocial.Collection.prototype.getById = function(id) {
// TODO(doll): A non-linear search would be better
for (var i = 0; i < this.size(); i++) {
var item = this.array_[i];
if (item.getId() === id) {
return item;
}
}
return null;
};
/**
* Gets the size of this collection,
* which is equal to or less than the
* total size of the result.
* @return {Number} The size of this collection
*/
opensocial.Collection.prototype.size = function() {
return this.array_.length;
};
/**
* Executes the provided function once per member of the collection,
* with each member in turn as the
* parameter to the function.
* @param {Function} fn The function to call with each collection entry
*/
opensocial.Collection.prototype.each = function(fn) {
for (var i = 0; i < this.size(); i++) {
fn(this.array_[i]);
}
};
/**
* Returns an array of all the objects in this collection.
* @return {Array.<Object>} The values in this collection
*/
opensocial.Collection.prototype.asArray = function() {
return this.array_;
};
/**
* Gets the total size of the larger result set
* that this collection belongs to.
* @return {Number} The total size of the result
*/
opensocial.Collection.prototype.getTotalSize = function() {
return this.totalSize_;
};
/**
* Gets the offset of this collection within a larger result set.
* @return {Number} The offset into the total collection
*/
opensocial.Collection.prototype.getOffset = function() {
return this.offset_;
};
|
:: Command execute :: | |
--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.4862 ]-- |