treap 0.2.0 copy "treap: ^0.2.0" to clipboard
treap: ^0.2.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
0
points
120
downloads

Publisher

verified publisherbyolimit.com

Weekly Downloads

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

Repository (GitHub)
View/report issues

Topics

#treap #data-structures #collections #functional

License

unknown (license)

More

Packages that depend on treap