├── .gitignore ├── LICENSE ├── README.md ├── example └── main.dart ├── lib ├── map.dart ├── maybe.dart └── maybe_iterables.dart ├── pubspec.yaml └── test ├── map.dart ├── maybe.dart └── maybe_iterables.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/README.md -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/lib/map.dart -------------------------------------------------------------------------------- /lib/maybe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/lib/maybe.dart -------------------------------------------------------------------------------- /lib/maybe_iterables.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/lib/maybe_iterables.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/test/map.dart -------------------------------------------------------------------------------- /test/maybe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/test/maybe.dart -------------------------------------------------------------------------------- /test/maybe_iterables.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloisdeniel/dart_maybe/HEAD/test/maybe_iterables.dart --------------------------------------------------------------------------------