All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zio.internal.MutableSetCompat.scala Maven / Gradle / Ivy

There is a newer version: 2.1.11
Show newest version
package zio.internal

import scala.collection.mutable

trait MutableSetCompat[V] extends mutable.Set[V] {

  override def addOne(element: V): this.type = {
    add(element)
    this
  }

  override def subtractOne(element: V): this.type = {
    remove(element)
    this
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy