persistent 1.0.0 persistent: ^1.0.0 copied to clipboard
Efficient persistent data structures for Dart. "Persistent" means immutable here, not "saved on disk".
// Copyright (c) 2018, Google Inc. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.
// Author: Paul Brauner (polux@google.com)
import 'map_example.dart' as map_example;
import 'set_example.dart' as set_example;
main() {
map_example.main();
set_example.main();
}