Skip to content

Instantly share code, notes, and snippets.

@varmas
Created July 12, 2019 21:33
Show Gist options
  • Save varmas/77d023c30b2fbaea30e62b3f754ce6fb to your computer and use it in GitHub Desktop.
Save varmas/77d023c30b2fbaea30e62b3f754ce6fb to your computer and use it in GitHub Desktop.
a safe resource closer
private def withSafeClose[A](source: Closeable)(op: Closeable => A): A = {
try {
op(source)
} finally {
source.close()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment