Skip to content

0.11.7

Compare
Choose a tag to compare
@yurique yurique released this 21 Jan 05:05
· 305 commits to main since this release
  • Bugfix: .collect and .mapTo were not storing the mapped value (in the internal state)

An example that would show this behavior:

(pathEnd.mapTo(true) | path("page-1").mapTo(false)) { isIndex =>
  render(Page(isIndex))
}