Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:core
  3. Map<K,V>
  4. values property
values
description

values property

Iterable<V> getvalues

The values of thisMap.

The values are iterated in the order of their corresponding keys.This means that iteratingkeys andvalues in parallel willprovide matching pairs of keys and values.

The returned iterable has an efficientlength method based on thelength of the map. ItsIterable.contains method is based on== comparison.

Modifying the map while iterating the values may break the iteration.

Implementation

Iterable<V> get values;
  1. Dart
  2. dart:core
  3. Map<K,V>
  4. values property
Map class

[8]ページ先頭

©2009-2025 Movatter.jp