blob: abc40c9c510a3119648845a338612b405b4f60ff [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/*library: nnbd=true*/
/*class: Map:Map<K, V>,Object*/
abstract class Map<K, V> {
/*member: Map.map:Map<K2, V2> Function<K2, V2>(MapEntry<K2, V2> Function(K, V))*/
Map<K2, V2> map<K2, V2>(MapEntry<K2, V2> Function(K key, V value) f);
}
/*class: MapEntry:MapEntry<K, V>,Object*/
abstract class MapEntry<K, V> {}