Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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を練習してみただけ。

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]
```