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

com.github.jeroenr.bson.Identifiable.scala Maven / Gradle / Ivy

The newest version!
package com.github.jeroenr.bson

trait Identifiable[A] {

  def identifier: A

  override def equals(other: Any): Boolean = {
    other.isInstanceOf[Identifiable[A]] && other.asInstanceOf[Identifiable[A]].identifier == this.identifier
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy