$List<E>.view constructor

$List<E>.view(
  1. List<E> value,
  2. $Value mapper(
    1. E value
    )
)

Create a view of a List as a $List (supports writeback)

Implementation

factory $List.view(List<E> value, $Value Function(E value) mapper) =
    _$List$view;