whileTrue

open fun whileTrue(predicate: (RouteStackEntry) -> Boolean): (route: RouteStackEntry) -> Boolean

Pops while a specified condition is true. This is a convenience function for readability.

Parameters

predicate

The predicate function that determines what routes will be popped. Returning true will pop the route off the stack. Returning false will stop the popping operation.