Nemerle Documentation

List.Nth Method 

Returns n-th element of list, where 0-th is head. Throws InvalidArgument exception when given too short list. Works in time O(n) and memory O(1).

public static object Nth(
   list l,
   int n
);

See Also

List Class | Nemerle.Collections Namespace