add method

L<T> add(
  1. T item
)

Implementation

L<T> add(T item) {
  return LAdd<T>(this, item);
}