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

lspace.librarian.provider.mem.MemEdge.scala Maven / Gradle / Ivy

There is a newer version: 0.6.0.12
Show newest version
package lspace.librarian.provider.mem

import lspace.librarian.structure._

object MemEdge {}

trait MemEdge[S, E] extends MemResource[Edge[S, E]] with Edge[S, E] {

  override def remove(): Unit = {
    super.remove()
    inV.removeIn(this)
    outV.removeOut(this)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy