biset.xml

来自「ajax 框价.是个好工具.javascript 矿家.可以用在任何平台.」· XML 代码 · 共 72 行

XML
72
字号
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="api.xsl"?><class name="BiSet" extends="BiObject">	<description>A simple class for storing a set of objects</description>	<arguments>	</arguments>	<staticMethods>	</staticMethods>	<staticFields>	</staticFields>	<methods>		<method name="add">			<description>Adds an object to the set. An object can only be available once in a set</description>			<arguments>				<argument name="o">					<description>The object to add</description>					<type>Object</type>				</argument>			</arguments>			<returns>				<type>void</type>			</returns>		</method>		<method name="remove">			<description>Removes an object from the set.</description>			<arguments>				<argument name="o">					<description>The object to remove</description>					<type>Object</type>				</argument>			</arguments>			<returns>				<type>void</type>			</returns>		</method>		<method name="contains">			<description>Checks whether the set contains the given object</description>			<arguments>				<argument name="o">					<description>The object to check for</description>					<type>Object</type>				</argument>			</arguments>			<returns>				<type>Boolean</type>			</returns>		</method>		<method name="clear">			<description>Removes all objects from the set</description>			<arguments>			</arguments>			<returns>				<type>void</type>			</returns>		</method>		<method name="toArray">			<description>This returns an array containing the objects in the set</description>			<arguments>			</arguments>			<returns>				<type>Object[]</type>			</returns>		</method>	</methods>	<properties>	</properties>	<events>	</events>	<remarks>	</remarks></class>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?