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

lspace.structure.PartialOutEdge.scala Maven / Gradle / Ivy

package lspace.structure

import lspace.structure.util.ClassTypeable
import monix.eval.Task
import shapeless.<:!<

/** A partial out edge as helper to write triples
  *
  * @param from
  * @param key
  * @tparam T
  */
case class PartialOutEdge[+T](from: Resource[T], key: Property) {
  def -->[V, V0, VT0 <: ClassType[_]](value: V)(implicit ev: V <:!< ClassType[_],
                                                dt: ClassTypeable.Aux[V, V0, VT0]): Task[Edge[T, V0]] =
    from.addOut(key, value)(ev, dt)
  def -->[V <: ClassType[_]](value: V): Task[Edge[T, Node]] =
    from.addOut(key, value)
  def ---[V, R[T] <: Resource[T]](value: R[V]): Task[(Edge[T, V], Edge[V, T])] = from.addBoth(key, value)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy