treap 0.3.0 copy "treap: ^0.3.0" to clipboard
treap: ^0.3.0 copied to clipboard

A persistent treap for Dart. A heap balanced randomized binary tree with efficient value semantics.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'ui/todo_list_page.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    const title = 'Todo';
    return Material(
      child: MaterialApp(
        debugShowCheckedModeBanner: false,
        title: title,
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        home: const TodoListPage(title: title),
      ),
    );
  }
}
9
likes
160
points
42
downloads

Publisher

verified publisherbyolimit.com

Weekly Downloads

A persistent treap for Dart. A heap balanced randomized binary tree with efficient value semantics.

Repository (GitHub)

Topics

#treap #data-structures #collections #functional

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

meta

More

Packages that depend on treap