📄 iota.h
字号:
#ifndef IOTA_H#define IOTA_H#include <numeric>//iota definition used in unit testtemplate <typename _It, typename _Tp>void __iota(_It __first, _It __last, _Tp __val) {#if defined (STLPORT) && !defined (_STLP_NO_EXTENSIONS) iota(__first, __last, __val);#else while (__first != __last) { *__first++ = __val++; }#endif}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -