DataFrame 1.0 Help

last

Returns the last value in this DataColumn. If the DataColumn is empty, throws an exception.

If a predicate is specified, returns the last value in this DataColumn that matches the predicate. Throws an exception if the DataColumn contains no elements matching the predicate.

lastOrNull

Returns the last value in this DataColumn. If the DataColumn is empty, returns null.

If a predicate is specified, returns the last value in this DataColumn that matches the predicate, or null if the DataColumn contains no elements matching the predicate.

09 September 2026