├── .gitignore ├── CHANGELOG.md ├── README.md ├── analysis_options.yaml ├── bin ├── belajar_dart_collection.dart ├── check_method.dart ├── comparable.dart ├── comparator.dart ├── convert_method.dart ├── double_linked_queue.dart ├── filter_method.dart ├── hash_map.dart ├── hash_set.dart ├── iterable_properties.dart ├── iterator.dart ├── linked_hash_map.dart ├── linked_hash_set.dart ├── linked_list.dart ├── list_fix.dart ├── list_growable.dart ├── list_method.dart ├── list_operator.dart ├── map.dart ├── map_entry.dart ├── queue.dart ├── set_method.dart ├── splay_tree_map.dart ├── splay_tree_set.dart ├── stack.dart ├── transform_method.dart ├── unmodifiable_list.dart ├── unmodifiable_map.dart └── unmodifiable_set.dart ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | A simple command-line application. 2 | -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/belajar_dart_collection.dart: -------------------------------------------------------------------------------- 1 | void main(List arguments) { 2 | print('Hello world!'); 3 | } 4 | -------------------------------------------------------------------------------- /bin/check_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/check_method.dart -------------------------------------------------------------------------------- /bin/comparable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/comparable.dart -------------------------------------------------------------------------------- /bin/comparator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/comparator.dart -------------------------------------------------------------------------------- /bin/convert_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/convert_method.dart -------------------------------------------------------------------------------- /bin/double_linked_queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/double_linked_queue.dart -------------------------------------------------------------------------------- /bin/filter_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/filter_method.dart -------------------------------------------------------------------------------- /bin/hash_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/hash_map.dart -------------------------------------------------------------------------------- /bin/hash_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/hash_set.dart -------------------------------------------------------------------------------- /bin/iterable_properties.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/iterable_properties.dart -------------------------------------------------------------------------------- /bin/iterator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/iterator.dart -------------------------------------------------------------------------------- /bin/linked_hash_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/linked_hash_map.dart -------------------------------------------------------------------------------- /bin/linked_hash_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/linked_hash_set.dart -------------------------------------------------------------------------------- /bin/linked_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/linked_list.dart -------------------------------------------------------------------------------- /bin/list_fix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/list_fix.dart -------------------------------------------------------------------------------- /bin/list_growable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/list_growable.dart -------------------------------------------------------------------------------- /bin/list_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/list_method.dart -------------------------------------------------------------------------------- /bin/list_operator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/list_operator.dart -------------------------------------------------------------------------------- /bin/map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/map.dart -------------------------------------------------------------------------------- /bin/map_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/map_entry.dart -------------------------------------------------------------------------------- /bin/queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/queue.dart -------------------------------------------------------------------------------- /bin/set_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/set_method.dart -------------------------------------------------------------------------------- /bin/splay_tree_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/splay_tree_map.dart -------------------------------------------------------------------------------- /bin/splay_tree_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/splay_tree_set.dart -------------------------------------------------------------------------------- /bin/stack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/stack.dart -------------------------------------------------------------------------------- /bin/transform_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/transform_method.dart -------------------------------------------------------------------------------- /bin/unmodifiable_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/unmodifiable_list.dart -------------------------------------------------------------------------------- /bin/unmodifiable_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/unmodifiable_map.dart -------------------------------------------------------------------------------- /bin/unmodifiable_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/bin/unmodifiable_set.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-dart-collection/HEAD/pubspec.yaml --------------------------------------------------------------------------------