Iota函數
此條目沒有列出任何參考或來源。 (2017年5月4日) |
提供該函數的語言
APL
寫作,產生從1到N的連續整數,即 1、2、3、……、N。
自C++11起提供,位於<numeric>庫。
#include <iostream>
#include <vector>
#include <numeric>
std::vector<char> vch(26);
std::iota(vch.begin(), vch.end(), 'a');
for(char ch: vch){
std::cout<<ch;//abcdefghijklmnopqrstuvwxyz
}
在 System.Linq.Enumerable(以及ParallelEnumerable)中。
Dim vi As New List(Of Integer)(System.Linq.Enumerable.Range(5, 6))
For Each i As Integer In vi
System.Diagnostics.Debug.WriteLine(i)'5 6 7 8 9 10
Next i