itrie 0.0.1
itrie: ^0.0.1 copied to clipboard
Efficient, immutable and stack safe implementation of a `Trie` data structure in dart. Ideal for autocomplete, text search, spell checking, and generally when working with string and prefixes.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add itrieWith Flutter:
$ flutter pub add itrieThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
itrie: ^0.0.1Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:itrie/itrie.dart';