Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yusukeiwaki/dart_core_ext_playground
leisim/dartx を参考にstatic extension methodsを練習してみただけ。
https://github.com/yusukeiwaki/dart_core_ext_playground
Last synced: about 1 month ago
JSON representation
leisim/dartx を参考にstatic extension methodsを練習してみただけ。
- Host: GitHub
- URL: https://github.com/yusukeiwaki/dart_core_ext_playground
- Owner: YusukeIwaki
- Created: 2019-11-02T04:52:54.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-02T04:53:19.000Z (about 5 years ago)
- Last Synced: 2024-10-18T08:33:01.321Z (3 months ago)
- Language: Dart
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dart_core_ext (just playground)
```
import 'package:dart_core_ext/dart_core_ext.dart';10.timesDo((i) {
print(i);
});4.times.map((i) => i * i);
// => [0, 1, 4, 9]
```