summaryrefslogtreecommitdiff
path: root/doc/ja
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-06-26 21:37:02 +0200
committerSébastien Helleu <flashcode@flashtux.org>2021-06-26 21:37:02 +0200
commita48a615613e44490e7ab63823bd6b4ce088fc143 (patch)
tree1f3e7479d3f8f67e650060984c6c656330bd835f /doc/ja
parent5a59482cc8757e217f43882eadb337f9e8184995 (diff)
downloadweechat-a48a615613e44490e7ab63823bd6b4ce088fc143.zip
api: remember insertion order in hashtables
Diffstat (limited to 'doc/ja')
-rw-r--r--doc/ja/weechat_plugin_api.ja.adoc12
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc
index a833c0233..cc4cf1c6b 100644
--- a/doc/ja/weechat_plugin_api.ja.adoc
+++ b/doc/ja/weechat_plugin_api.ja.adoc
@@ -5269,7 +5269,9 @@ if (weechat_hashtable_has_key (hashtable, "my_key"))
_WeeChat バージョン 0.3.3 以上で利用可。_
-ハッシュテーブルのすべてのエントリに対して関数を呼び出す。
+// TRANSLATION MISSING
+ハッシュテーブルのすべてのエントリに対して関数を呼び出す,
+by insertion order in the hashtable (from oldest to newest one).
プロトタイプ:
@@ -5313,7 +5315,9 @@ weechat_hashtable_map (hashtable, &map_cb, NULL);
_WeeChat バージョン 0.3.7 以上で利用可。_
-ハッシュテーブルのすべてのエントリに対して関数を呼び出す、キーと値を文字列として関数に渡す。
+// TRANSLATION MISSING
+Call a function on all hashtable entries, by insertion order in the hashtable
+(from oldest to newest one), sending keys and values as strings.
プロトタイプ:
@@ -5527,7 +5531,9 @@ weechat_hashtable_set_pointer (hashtable, "callback_free_key", &my_free_key_cb);
_WeeChat バージョン 0.3.3 以上で利用可。_
-ハッシュテーブルの要素をインフォリスト要素に追加
+// TRANSLATION MISSING
+ハッシュテーブルの要素をインフォリスト要素に追加, by insertion order in the hashtable
+(from oldest to newest one).
プロトタイプ: