クライアント側のパーシスタント データでエクスポートされるインターフェイスです。
説明
| コレクションのクローンを返します。 |
| Repository 内のキーと値のペアを直列化し、それをパーシスタント ストレージに書き込みます。 |
コレクションのクローンを返します。
戻り値
説明
例
| 例 | |
{value
|| Declare and initialize set-1 (the original set).
let set-1:{Set-of String} =
{new {Set-of String}, "apple", "banana", "cherry"}
|| Initialize set-2 with a clone of the contents of
|| set-1.
let set-2:{Set-of String} = {set-1.clone}
|| Use a VBox to display the contents of set-2.
|| Iterate over the contents of set-2, adding them
|| to the VBox. Then display the VBox.
let message:VBox = {VBox}
{for each-element:String in set-2 do
{message.add each-element}
}
message
}
|
注意事項
注意事項
Repository 内のキーと値のペアを直列化し、それをパーシスタント ストレージに書き込みます。
説明