dart_essentials 1.0.1
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');
}
}