This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cats.data.Xor | |
import shapeless._ | |
import shapeless.ops.hlist.IsHCons | |
import shapeless.tag.@@ | |
trait Predicate[P, T] extends Serializable { self => | |
type Out | |
def apply(x: T) : Out |