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
- Clojure
- Clojure
- C++
- C++
- C#
- C#
- C#
- D
- D
- Dart
- Elixir
- Erlang
- Fortran
- Go
- Groovy
- Haskell
- Haskell
- JS
- JS
- Java
- Java
- Kotlin
- Lisp
- Lua
- Obj-C
- PHP
- PHP
- Pascal
- Perl
- Perl
- Python
- Ruby
- Ruby
- Rust
- Rust
- Scala
- Scheme
- Smalltalk
- VB
X := Items'Last
X must be declared earlier.
int length = sizeof(items) / sizeof(items[0]);
int x = items[length - 1];
Only works if items has not decayed to a pointer.
length is defined as the size of the items array in bytes, divided by the size of its first element in bytes.
length is defined as the size of the items array in bytes, divided by the size of its first element in bytes.
(def x (last items))
var x = items[items.Count-1];
int[42] items;
int x = items[$-1];
The dollar operator represents the length of the array that's referred to inside the square brackets.
x = items.last;
x = lists:last(items),
x = items(ubound(items,1))
x := items[len(items)-1]
items is a slice.
There is no shortcut, use len!
Panics if the list is empty.
There is no shortcut, use len!
Panics if the list is empty.
foo :: [a] -> Maybe a
foo [] = Nothing
foo xs = Just $ last xs
x = foo items
items is a list of homogeneous elements
x = last items
Crashes if items is empty
const x = items[items.length - 1];
const x = items.at(-1);
T x = items.getLast();
(setf x (car (last items)))
x := items[high(items)];
my $x = $items[-1];
$items[] looks up a single element from list @items.
Negative indices count from the end of the list.
Negative indices count from the end of the list.
my $x = $items[$#items];
$#items represents the last index variable for items array
x = items[-1]
x = items[-1]
val x = items.last
(define items (list 1 2 3 4))
(define x (last items))
This runs in O(n) time since list produces a linked list.
x := items last.
Dim x = items(items.Count - 1)