tailrec 1.0.2 copy "tailrec: ^1.0.2" to clipboard
tailrec: ^1.0.2 copied to clipboard

This package help you to convert recursive function into the while-loop codes. so that program won't meet out of memory that caused by stack overflow.

Use this package as a library

Depend on it

Run this command:

With Dart:

 $ dart pub add tailrec

With Flutter:

 $ flutter pub add tailrec

This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):

dependencies:
  tailrec: ^1.0.2

Alternatively, 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:tailrec/tailrec.dart';
4
likes
140
pub points
0%
popularity

Publisher

unverified uploader

This package help you to convert recursive function into the while-loop codes. so that program won't meet out of memory that caused by stack overflow.

Homepage

Documentation

API reference

License

GPL-3.0 (LICENSE)

More

Packages that depend on tailrec