vault backup: 2022-07-13 10:03:11
Affected files: .obsidian/workspace 02. PARA/03. Resources(資源)/C++17/for_each.md
This commit is contained in:
14
.obsidian/workspace
vendored
14
.obsidian/workspace
vendored
@@ -9,7 +9,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "markdown",
|
"type": "markdown",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "02. PARA/01. Project(專案)/008. Sentinel.md",
|
"file": "02. PARA/03. Resources(資源)/C++17/for_each.md",
|
||||||
"mode": "source",
|
"mode": "source",
|
||||||
"source": true
|
"source": true
|
||||||
}
|
}
|
||||||
@@ -69,7 +69,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "02. PARA/01. Project(專案)/008. Sentinel.md",
|
"file": "02. PARA/03. Resources(資源)/C++17/for_each.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
"state": {
|
"state": {
|
||||||
"type": "outline",
|
"type": "outline",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "02. PARA/01. Project(專案)/008. Sentinel.md"
|
"file": "02. PARA/03. Resources(資源)/C++17/for_each.md"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -116,15 +116,15 @@
|
|||||||
},
|
},
|
||||||
"active": "ec13ce58b15fa6d4",
|
"active": "ec13ce58b15fa6d4",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
|
"02. PARA/03. Resources(資源)/讀書筆記/20220619 - 精確的力量.md",
|
||||||
|
"02. PARA/03. Resources(資源)/C++17/智慧指標.md",
|
||||||
|
"02. PARA/03. Resources(資源)/C++17/C++17.md",
|
||||||
"02. PARA/01. Project(專案)/008. Sentinel.md",
|
"02. PARA/01. Project(專案)/008. Sentinel.md",
|
||||||
"00. TOP/01. TODO.md",
|
"00. TOP/01. TODO.md",
|
||||||
"02. PARA/02. Area(領域)/20150803 - Android/ADB 取得 APK 的 icon.md",
|
"02. PARA/02. Area(領域)/20150803 - Android/ADB 取得 APK 的 icon.md",
|
||||||
"02. PARA/02. Area(領域)/20150803 - Android/ADB.md",
|
"02. PARA/02. Area(領域)/20150803 - Android/ADB.md",
|
||||||
"02. PARA/03. Resources(資源)/QT/QVariant.md",
|
"02. PARA/03. Resources(資源)/QT/QVariant.md",
|
||||||
"00. TOP/02. MOC.md",
|
"00. TOP/02. MOC.md",
|
||||||
"01. Daily/2021/06/2021-06-10(週四).md",
|
"01. Daily/2021/06/2021-06-10(週四).md"
|
||||||
"02. PARA/03. Resources(資源)/OpenGL.md",
|
|
||||||
"02. PARA/03. Resources(資源)/C++17/Structured binding declaration.md",
|
|
||||||
"02. PARA/03. Resources(資源)/Tool Setup/Chrome.md"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
11
02. PARA/03. Resources(資源)/C++17/for_each.md
Normal file
11
02. PARA/03. Resources(資源)/C++17/for_each.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
for_each 是一個函式,它的原型是:
|
||||||
|
```cpp
|
||||||
|
template<class InputIterator, class Function>
|
||||||
|
Function for_each(
|
||||||
|
InputIterator _First,
|
||||||
|
InputIterator _Last,
|
||||||
|
Function _Func
|
||||||
|
);
|
||||||
|
```
|
||||||
|
|
||||||
|
它需要3個參數,第一個
|
||||||
Reference in New Issue
Block a user