Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ocadaruma/scala-macro-practice


https://github.com/ocadaruma/scala-macro-practice

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# scala-macro-practice

こういう↓benchアノテーションを作ってみます

- メソッドに@benchとつけると、メソッドの実行時間がprintされるようになる
- メソッド以外につけるとコンパイルエラーになる

## 実行例

```bash:
$ sbt sample/console
scala> Sample.f()
elapsed: 1002961000ns
res0: Int = 42
```