////////////////////////////////////////////////////////////////////////////////
//
// 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.
//
////////////////////////////////////////////////////////////////////////////////
package mx.utils
{
/**
* The ArrayUtil utility class is an all-static class
* with methods for working with arrays within Flex.
* You do not create instances of ArrayUtil;
* instead you call static methods such as the
* ArrayUtil.toArray()
method.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public class ArrayUtil
{
include "../core/Version.as";
//--------------------------------------------------------------------------
//
// Class methods
//
//--------------------------------------------------------------------------
/**
* Ensures that an Object can be used as an Array.
*
*
If the Object is already an Array, it returns the object. * If the object is not an Array, it returns an Array * in which the only element is the Object. * As a special case, if the Object is null, * it returns an empty Array.
* * @param obj Object that you want to ensure is an array. * * @return An Array. If the original Object is already an Array, * the original Array is returned. Otherwise, a new Array whose * only element is the Object is returned or an empty Array if * the Object was null. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public static function toArray(obj:Object):Array { if (obj == null) return []; else if (obj is Array) return obj as Array; else return [ obj ]; } /** * Returns the index of the item in the Array. * * @param item The item to find in the Array. * * @param source The Array to search for the item. * * @return The index of the item, and -1 if the item is not in the list. * * @langversion 3.0 * @playerversion Flash 9 * @playerversion AIR 1.1 * @productversion Flex 3 */ public static function getItemIndex(item:Object, source:Array):int { var n:int = source.length; for (var i:int = 0; i < n; i++) { if (source[i] === item) return i; } return -1; } } }