Skip to content

Instantly share code, notes, and snippets.

@eguneys
Last active January 8, 2020 12:55
Show Gist options
  • Save eguneys/e165087f569e598ded9904e9a4d27cdb to your computer and use it in GitHub Desktop.
Save eguneys/e165087f569e598ded9904e9a4d27cdb to your computer and use it in GitHub Desktop.
ConcurrentHashMap to Scala List
import java.util.concurrent.ConcurrentHashMap
import scala.jdk.CollectionConverters._
var masas = new ConcurrentHashMap[Masa.ID, Masa]()
def publicCreated: List[Masa] = masas.values.asScala.toList
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment