com.devsisters.shardcake.package.scala Maven / Gradle / Ivy
The newest version!
package com.devsisters
import scala.collection.mutable
package object shardcake {
type ShardId = Int
type EpochMillis = Long
private[shardcake] def renderShardIds(ids: Iterable[ShardId]): String =
ids
.foldLeft(mutable.BitSet.empty)(_ += _)
.mkString("[", ", ", "]")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy