Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ Any function that takes a callback as an argument can accept an expression (`Exp
Curious about the code that will be generated? Simply append `.displayResult()` to the method chain, and the generated for-loop expression will be traced/printed to the console at compile-time! You can even place it between calls to debug up to a certain point in the chain.
```haxe
["a", "b", "c"]
.magiter()
.map(_.indexOf("b"))
.filter(_ >= 0)
.asList()
Expand Down