kotlin.collections.List

List

interface List<out E> : Collection<E>

A generic ordered collection of elements. Methods in this interface support only read-only access to the list; read/write access is supported through the MutableList interface.

Parameters

E - the type of elements contained in the list. The list is covariant on its element type.

Properties

size

登录查看完整内容