kseo / immutable

Immutable collections for Dart

Home Page:https://pub.dartlang.org/packages/immutable

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

immutable

Immutable collections for Dart. It's in its very early days and under heavy development, not ready for production use.

Usage

A simple usage example:

import 'package:immutable/immutable.dart';

main() {
  var stack = ImmutableStack.empty.push(5);
  print(stack.peek());
}

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

Immutable collections for Dart

https://pub.dartlang.org/packages/immutable

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 100.0%