Logo

Programming-Idioms

  • C#
  • D
auto n = x.length;
import std.range.primitives;
n = walkLength(x);

walkLength is a generic solution that works for built-in arrays and containers that implement an input range interface.
using System.Collections.Generic;
int n = x.Count;

Works for a List object.

If x is of type IEnumerable, use Count() instead.
int n = x.Length;

x is an array
with Ada.Containers.Vectors;
use Ada.Containers;
N : Count_Type := X.Length;

New implementation...
< >
programming-idioms.org