Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Ada
- C
- Caml
- Clojure
- C++
- C++
- C++
- C#
- C#
- C#
- D
- D
- Dart
- Dart
- Dart
- Elixir
- Erlang
- Fortran
- Go
- Groovy
- Haskell
- JS
- JS
- Java
- Java
- Java
- Java
- Kotlin
- Lisp
- Lua
- Obj-C
- PHP
- Pascal
- Pascal
- Perl
- Python
- Python
- Ruby
- Ruby
- Rust
- Rust
- Scala
- Scheme
- Smalltalk
- VB
- VB
- VB
for (size_t i = 0; i < n; i++) {
printf("Item %d = %s\n", i, toString(items[i]));
}
The loop variable i is the index. Inside the loop, access the value with items[i]
(* output_elem is a printer for elements of [items] *)
items |> List.iteri (fun i x ->
printf "%d: %a" i output_elem x
)
(doseq [[i x] (map-indexed vector items)]
(println i ":" x))
items can be any Clojure collection (vector, list, set, map). We construct a new sequence which contains in each element the index of each one and its original value in items. doseq is used for side-effects.
for (auto const [i, x] : std::views::enumerate(items)) {
std::cout << i << ": " << x << '\n';
}
Depends on C++ 23
std::size_t i = 0;
for(const auto & x: items) {
std::cout << "Item " << i++ << " = " << x << std::endl;
}
Uses the C++11 features "range-based for loop" and "auto".
foreach (var (i, x) in items.AsIndexed())
{
System.Console.WriteLine($"{i}: {x}");
}
public static class Extensions
{
public static IEnumerable<(int, T)> AsIndexed<T>(
this IEnumerable<T> source)
{
var index = 0;
foreach (var item in source)
{
yield return (index++, item);
}
}
}
By adding an extension method to IEnumerable<T>, we can perform a foreach over the collection.
Such an extension method isn't provided as part of the standard framework but can be added to a project
Such an extension method isn't provided as part of the standard framework but can be added to a project
items.enumerate.each!(a => writeln("i = ", a[0], " value = ", a[1]));
enumerate can be used instead of foreach with an index when the statement is simple enough to be a lambda or when the foreach aggregate (the array like thing) can't be indexed.
for (var i = 0; i < items.length; i++) {
print('index=$i, value=${items[i]}');
}
do i=1, size(items)
print *,i, items(i)
end do
items.eachWithIndex {
x, i -> println "Item $i = $x"
}
mapM_ print (zip [0..] items)
for (var i in items) {
console.log("index=" + i + ", value=" + items[i]);
}
this is a horrible implementation, use the "functional" one above. If you don't need the index, using "for...of" is ok, "for...in" almost never is.
items.forEach((val, idx) => {
console.log("index=" + idx + ", value=" + val);
});
This is the functional way of iterating.
range(0, items.length)
.forEach(i -> {
out.println(i + " = " + items[i]);
});
items.forEachIndexed { i, x ->
println("i=$i x=$x")
}
(loop for i from 0 and x across items
do (format t "~a = ~a~%" i x))
for i, x in ipairs(items) do
print('Index: '..i..', Value: '..x)
end
[items enumerateObjectsUsingBlock:^(id x, NSUInteger i, BOOL *stop) {
NSLog(@"Item %lu = %@",(u_long)i,x);
}];
The plain-C approach can be used as well. Showing another, object-oriented possibility. Typecast needed with %lu (same as in printf) for multi-platform compatibility. The stop argument serves same purpose as plain-C break
foreach ($items as $i=>$x)
{
echo "i=$i, x=$x"; echo '<br>';
}
var I:Integer;
Items: array of String;
[..]
for I := 0 to high(Items) do
WriteLn('Item ', I, ' = ', Items[I]);
while (my ($i, $x) = each @items) {
print "array[$i] = $x\n";
}
The each iterator returns the index/key and value as a pair for each iteration.
print(*enumerate(items))
val items = List("a", "b", "c")
items.zipWithIndex.foreach{ case (item, index) =>
println(s"$index => $item")
}
zipWithIndex takes each item in a collection and replaces it with a tuple of (item, index)
(define (display-list items)
(define (display-list items i)
(if (not (null? items))
(begin
(display (string-append
(number->string i)
": "
(number->string (first items))
"\n"))
(display-list (rest items) (+ i 1)))
'done))
(display-list items 0))
Iteration is tail-recursion.
items withIndexDo: [:item :index |
Transcript showln: 'item: ' , item asString , ' index: ' , index asString].
For i = LBound(items) To UBound(items)
x = items(i)
Debug.Print i & ": " & x
Next
For i As Integer = 0 To items.Length - 1
Dim x = items(i)
Console.WriteLine($"Item {i} = {x}")
Next
items is an array
For i As Integer = 0 To items.Count - 1
Dim x = items(i)
Console.WriteLine($"Item {i} = {x}")
Next
items is IList(Of T)