FLUTTER ECOSYSTEM

appsup-dart/sortedmap

一個物件地圖,可根據其鍵和值進行排序和過濾

sortedmap 專案封面
Stars
7
Forks
4
最近推送(UTC)
2026年5月30日
專案狀態
未封存
appsup-dart GitHub avatar
GITHUB Organization

appsup-dart ↗

語言Dart

此儲存庫發佈的套件

使用的依賴

依賴清單 5 項
  • test開發依賴^1.16.5
  • benchmark_test開發依賴^0.1.1+2
  • lints開發依賴^6.0.0
  • quiver開發依賴^3.0.0
  • melos開發依賴^7.0.0

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

Contains a SortedMap and FilteredMap class, which hold a map of objects that can be ordered relative to each other.

Unlike SplayTreeMap the objects can be ordered on both key and value or a combination of both.

The FilteredMap also allows to specify an isValid function on key/value pairs and limit the number of objects allowed in the map.

SortedMap

A simple usage example:

import 'package:sortedmap/sortedmap.dart';

main() {
  var map = new SortedMap(Ordering.byValue());
  
  map.addAll({
    "a": 3,
    "b": 2,
    "c": 4,
    "d": 1
  });
  
  print(map.lastKeyBefore("c")); // a
  print(map.firstKeyAfter("d")); // b
  
}

FilteredMap

A simple usage example:

import 'package:sortedmap/sortedmap.dart';

main() {
  var map = new FilteredMap(new Filter(
    compare: (Pair a, Pair b)=>Comparable.compare(a.value, b.value),
    isValid: (Pair v) => v.key!="b",
    limit: 2));
  
  map.addAll({
    "a": 3,
    "b": 2,
    "c": 4,
    "d": 1
  });
  
  print(map.keys); // (d, a)
  
}

Features and bugs

Please file feature requests and bugs at the issue tracker.