OutSystems Forge 日本語データベース

HashTable

※Forge全件データの日本語検索サービスをご利用になりたい場合は、こちらまでお問合せください。

Forge英文サイト

2016-10-12 0.0.7 OutSystems Labs 10.0.105.0 All .NET Libraries
これは、Hashtableクラスをラップする単純な拡張です。 現在、テキストをサポートしています。
これは、Hashtableクラスをラップする単純な拡張です。 現在、テキストをサポートしています。 私はまだこれを強化するいくつかの方法を研究しています。 とにかくそれは既に使用されるかもしれません。 特徴 拡張機能によって提供される現在サポートされているメソッドは次のとおりです。 add:指定されたキーと値を持つ要素をHashtableに追加します。 containsKey:Hashtableに特定のキーが含まれているかどうかを判定します。 containsValue:Hashtableに特定の値が含まれているかどうかを判定します。 count:ハッシュテーブルに含まれるキーと値のペアの数を取得します。 createHashtable:Hashtableクラスの新しいインスタンスを初期化します。 get:指定されたキーの値を取得します。 keys:Hashtableのキーを含むレコードリストを返します。 remove:指定されたキーを持つ要素をHashtableから削除します。 values:Hashtableの値を含むレコードリストを返します。

[Overview]
This is a simple extension that wraps the Hashtable class. It currently supports text.
[Detail]
This is a simple extension that wraps the Hashtable class. It currently supports text. I am still studying some ways to enhance this; anyhow it may be used already. Feature List The currently supported methods provided by the extension are: add: adds an element with the specified key and value into the Hashtable. containsKey: determines whether the Hashtable contains a specific key. containsValue: determines whether the Hashtable contains a specific value. count: gets the number of key-and-value pairs contained in the Hashtable. createHashtable: initializes a new instance of the Hashtable class. get: gets a value for the specified key. keys: returns a record list containing the keys in the Hashtable. remove: removes the element with the specified key from the Hashtable. values: returns a record list containing the values in the Hashtable.
戻る