FLUTTER ECOSYSTEM

dart-archive/collection

Dart의 collection 패키지는 컬렉션 작업을 더 쉽게 만들어주는 유틸리티 함수와 클래스를 포함한 여러 개별 라이브러리가 들어 있습니다.

collection 프로젝트 이미지
Stars
374
Forks
86
최근 푸시(UTC)
2024. 10. 21.
프로젝트 상태
보관됨
Dart Archive GitHub avatar
GITHUB Organization

Dart Archive ↗

Legacy projects kept around for posterity – See github.com/dart-lang for current work

언어Dart

기술 주제

사용 중인 의존성

의존성 목록 2 개
  • dart_flutter_team_lints개발 의존성^3.0.0
  • test개발 의존성^1.16.0

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

[!IMPORTANT]
This repo has moved to https://github.com/dart-lang/core/tree/main/pkgs/collection

Dart CI pub package package publisher

Contains utility functions and classes in the style of dart:collection to make working with collections easier.

Algorithms

The package contains functions that operate on lists.

It contains ways to shuffle a List, do binary search on a sorted List, and various sorting algorithms.

Equality

The package provides a way to specify the equality of elements and collections.

Collections in Dart have no inherent equality. Two sets are not equal, even if they contain exactly the same objects as elements.

The Equality interface provides a way to define such an equality. In this case, for example, const SetEquality(IdentityEquality()) is an equality that considers two sets equal exactly if they contain identical elements.

Equalities are provided for Iterables, Lists, Sets, and Maps, as well as combinations of these, such as:

const MapEquality(IdentityEquality(), ListEquality());

This equality considers maps equal if they have identical keys, and the corresponding values are lists with equal (operator==) values.

Iterable Zip

Utilities for "zipping" a list of iterables into an iterable of lists.

Priority Queue

An interface and implementation of a priority queue.

Wrappers

The package contains classes that "wrap" a collection.

A wrapper class contains an object of the same type, and it forwards all methods to the wrapped object.

Wrapper classes can be used in various ways, for example to restrict the type of an object to that of a supertype, or to change the behavior of selected functions on an existing object.

Features and bugs

Please file feature requests and bugs at the issue tracker.

Publishing automation

For information about our publishing automation and release process, see https://github.com/dart-lang/ecosystem/wiki/Publishing-automation.