dart_essentials 1.0.1 copy "dart_essentials: ^1.0.1" to clipboard
dart_essentials: ^1.0.1 copied to clipboard

Lightweight dart package containing several frequently used types and helper functions

example/dart_essentials_example.dart

import 'package:dart_essentials/tuples.dart';
import 'package:dart_essentials/regex_extras.dart';

void main() {
  final myTuple = Tuple3<int>(2, 5, 13);
  print(myTuple.toList()[1]);

  if ('Hello World'.isAlphabetic()) {
    print('Hello World');
  }
}
0
likes
160
points
45
downloads

Publisher

unverified uploader

Weekly Downloads

Lightweight dart package containing several frequently used types and helper functions

Homepage

Documentation

API reference

License

MIT (license)

More

Packages that depend on dart_essentials