From 777e62bfe2bc0cbee2ffc97109c9726db08f42a9 Mon Sep 17 00:00:00 2001 From: Awin Huang Date: Wed, 13 Jul 2022 10:13:12 +0800 Subject: [PATCH] vault backup: 2022-07-13 10:13:12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Affected files: 02. PARA/03. Resources(資源)/C++17/for_each.md --- 02. PARA/03. Resources(資源)/C++17/for_each.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/02. PARA/03. Resources(資源)/C++17/for_each.md b/02. PARA/03. Resources(資源)/C++17/for_each.md index 1f3f3b8..75a4585 100644 --- a/02. PARA/03. Resources(資源)/C++17/for_each.md +++ b/02. PARA/03. Resources(資源)/C++17/for_each.md @@ -1,11 +1,11 @@ -for_each 是一個函式,它的原型是: +for_each 是一個 function,它的原型是: ```cpp template Function for_each( - InputIterator _First, + InputIterator _Start, InputIterator _Last, Function _Func ); ``` -它需要3個參數,第一個 \ No newline at end of file +它需要3個參數,第1個是開始的iterator,第2是結束的 iterator,第3個是要用來處理的 function \ No newline at end of file