Slackbot
Vampire
fun <T> Provider<T>.ifPresent(action: Action<T>) = if (isPresent) action(get()) else Unit
Giuseppe Barbieri