package exh.util inline fun ignore(expr: () -> T): T? { return try { expr() } catch (t: Throwable) { null } }