iota函數計算機語言中的一個函數,用於產生連續的值。

提供該函數的語言

編輯

寫作 ,產生從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