blob: ae5f428437dbd210aeb261184ee4a58ea29ab37e [file] [log] [blame]
/*
* 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 org.apache.thrift {
import flash.utils.Dictionary;
public class Set {
private var _elements:Dictionary = new Dictionary();
private var _size:int = 0;
public function Set(... values) {
for each (var value:* in values) {
add(value);
}
}
public function add(o:*):Boolean {
var alreadyPresent:Boolean = _elements.hasOwnProperty(o);
if (! alreadyPresent) {
_size++;
_elements[o] = true;
}
return ! alreadyPresent;
}
public function clear():void {
for (var value:* in _elements) {
remove(value);
}
}
public function contains(o:Object):Boolean {
return _elements.hasOwnProperty(o);
}
public function isEmpty():Boolean {
return _size == 0;
}
public function remove(o:*):Boolean {
if (contains(o)) {
delete _elements[o];
_size--;
return true;
}
else {
return false;
}
}
public function toArray():Array {
var ret:Array = new Array();
for (var key:* in _elements) {
ret.push(key);
}
return ret;
}
public function get size():int {
return _size;
}
}
}