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

gapt.expr.subst.SeqSubstitutable.scala Maven / Gradle / Ivy

The newest version!
package gapt.expr.subst

trait SeqSubstitutable {
  implicit def SubstitutableSeq[S <: Substitution, T, U](implicit ev: Substitutable[S, T, U]): Substitutable[S, Seq[T], Seq[U]] =
    (sub, seq) => seq.map(ev.applySubstitution(sub, _))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy