Logo

Programming-Idioms

Set n to the number of elements of the list x.
New implementation

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.

Other implementations
with Ada.Containers.Vectors;
use Ada.Containers;
N : Count_Type := X.Length;
int n;
int x[5];
n = sizeof(x)/sizeof(*x);
size_t n = sizeof(x)/sizeof(*x);
(def n (count x))
size_t n = x.size();
using System.Collections.Generic;
int n = x.Count;
int n = x.Length;
auto n = x.length;
import std.range.primitives;
n = walkLength(x);
int n = x.length;
n = Enum.count(x)
N = length(X).
n = size(x)
n := len(x)
def n = x.size()
let n = length x
var n = x.length;
int n = x.length;
int n = x.size();
val n = x.size
(setf n (length x))
local n = #x
@import Foundation;
NSUInteger n=x.count;
$n = count($x);
n := length(x);
$n = scalar @x;
my $N = @x;
n = len(x)
n = x.length
let n = x.len();

val n = x.size
(define n (length x))
n := x size.
Dim n As Integer = x.Count
n = UBound(x) + 1