stack 0.1.0 copy "stack: ^0.1.0" to clipboard
stack: ^0.1.0 copied to clipboard

outdated

A package for stack data structure. have the push, pop and top functionalities.

dart_stack #

A dart package for stack datastructure

codecov CircleCI

Usage #

Add dev dependency to your pubspec.yaml:

dev_dependencies:
  stack: ^0.0.1

Run pub get to install.

How it works #

Import

import 'package:stack/stack.dart';

Example

// Initialize
Stack<String> stack = Stack();
// Push
stack.push('abc');
// See the top
stack.top();
// Pop the top
stack.pop();
// Check for empty
stack.isEmpty;
// Check for non-enpty
stack.isNotEmpty;

Feel free to file feature requests and bug reports at the issue tracker.

35
likes
0
pub points
92%
popularity

Publisher

unverified uploader

A package for stack data structure. have the push, pop and top functionalities.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on stack