Skip to content

A Dart implementation of the Stack data structure, also supporting value equality.

License

Notifications You must be signed in to change notification settings

realshovanshah/equatable-stack

Repository files navigation

Equatable Stack

coverage style: very good analysis License: MIT

An implementation of the [Stack] data structure, which also supports value equality.

Features

  • Value equality
  • A copyWith Method

Getting started

Add equatable_stack as a dependency in your pubspec.yaml file.

Usage

Simply use the Stack class to create a instance.

final foo = Stack<int>(); // a empty stack
final bar = Stack.of(const [1, 2, 3]); // stack from a iterable

Additional information

Feel free to create an issue. here. Contributing guide will be added soon. PRs and new feature requests are always welcome.

About

A Dart implementation of the Stack data structure, also supporting value equality.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages