Skip to content

Instantly share code, notes, and snippets.

@saswata-dutta
Created June 25, 2021 06:39
Show Gist options
  • Save saswata-dutta/bf2b44e734fb7a27faf142b1ce2a1db6 to your computer and use it in GitHub Desktop.
Save saswata-dutta/bf2b44e734fb7a27faf142b1ce2a1db6 to your computer and use it in GitHub Desktop.
def tryWithResource[R <: Closeable, T](createResource: => R)(f: R => T): T = {
val resource = createResource
try f.apply(resource) finally resource.close()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment