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

com.codecommit.util.package.scala Maven / Gradle / Ivy

The newest version!
package com.codecommit.util

import scala.collection.generic.CanBuildFrom

package object util {
  import com.codecommit.util.ComplementarySet
  
  implicit def createComplementarySetCanBuildFrom[A, B]: CanBuildFrom[ComplementarySet[A], B, ComplementarySet[B]] = new CanBuildFrom[ComplementarySet[A], B, ComplementarySet[B]] {
    def apply = null
    
    def apply(from: ComplementarySet[A]) = null
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy