-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move instances into separate trait (#1659)
* move instances into separate trait * adding separate objects for piecemeal imports * Adding implicit resolution tests for piecemeal imports for hierarchy * Removing explicit implicitly and using apply method
- Loading branch information
1 parent
ed03ce3
commit b722f2b
Showing
18 changed files
with
212 additions
and
107 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package cats | ||
package instances | ||
|
||
trait EqInstances { | ||
implicit val catsContravariantCartesianEq: ContravariantCartesian[Eq] = new ContravariantCartesian[Eq] { | ||
def contramap[A, B](fa: Eq[A])(fn: B => A): Eq[B] = fa.on(fn) | ||
def product[A, B](fa: Eq[A], fb: Eq[B]): Eq[(A, B)] = | ||
Eq.instance { (left, right) => fa.eqv(left._1, right._1) && fb.eqv(left._2, right._2) } | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package cats | ||
package instances | ||
|
||
trait MonoidInstances { | ||
|
||
implicit val catsInvariantMonoidalMonoid: InvariantMonoidal[Monoid] = new InvariantMonoidal[Monoid] { | ||
def product[A, B](fa: Monoid[A], fb: Monoid[B]): Monoid[(A, B)] = new Monoid[(A, B)] { | ||
val empty = fa.empty -> fb.empty | ||
def combine(x: (A, B), y: (A, B)): (A, B) = fa.combine(x._1, y._1) -> fb.combine(x._2, y._2) | ||
} | ||
|
||
def imap[A, B](fa: Monoid[A])(f: A => B)(g: B => A): Monoid[B] = new Monoid[B] { | ||
val empty = f(fa.empty) | ||
def combine(x: B, y: B): B = f(fa.combine(g(x), g(y))) | ||
override def combineAll(bs: TraversableOnce[B]): B = | ||
f(fa.combineAll(bs.map(g))) | ||
} | ||
|
||
def pure[A](a: A): Monoid[A] = new Monoid[A] { | ||
val empty = a | ||
def combine(x: A, y: A): A = a | ||
override def combineAll(as: TraversableOnce[A]): A = a | ||
} | ||
} | ||
|
||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package cats | ||
package instances | ||
|
||
import cats.functor.Contravariant | ||
|
||
trait OrderInstances { | ||
|
||
implicit val catsFunctorContravariantForOrder: Contravariant[Order] = | ||
new Contravariant[Order] { | ||
/** Derive an `Order` for `B` given an `Order[A]` and a function `B => A`. | ||
* | ||
* Note: resulting instances are law-abiding only when the functions used are injective (represent a one-to-one mapping) | ||
*/ | ||
def contramap[A, B](fa: Order[A])(f: B => A): Order[B] = fa.on(f) | ||
} | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package cats | ||
package instances | ||
|
||
import cats.functor.Contravariant | ||
|
||
trait PartialOrderInstances { | ||
implicit val catsFunctorContravariantForPartialOrder: Contravariant[PartialOrder] = | ||
new Contravariant[PartialOrder] { | ||
/** Derive a `PartialOrder` for `B` given a `PartialOrder[A]` and a function `B => A`. | ||
* | ||
* Note: resulting instances are law-abiding only when the functions used are injective (represent a one-to-one mapping) | ||
*/ | ||
def contramap[A, B](fa: PartialOrder[A])(f: B => A): PartialOrder[B] = fa.on(f) | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package cats | ||
package instances | ||
|
||
trait SemigroupInstances { | ||
|
||
implicit val catsInvariantMonoidalSemigroup: InvariantMonoidal[Semigroup] = new InvariantMonoidal[Semigroup] { | ||
def product[A, B](fa: Semigroup[A], fb: Semigroup[B]): Semigroup[(A, B)] = new Semigroup[(A, B)] { | ||
def combine(x: (A, B), y: (A, B)): (A, B) = fa.combine(x._1, y._1) -> fb.combine(x._2, y._2) | ||
} | ||
|
||
def imap[A, B](fa: Semigroup[A])(f: A => B)(g: B => A): Semigroup[B] = new Semigroup[B] { | ||
def combine(x: B, y: B): B = f(fa.combine(g(x), g(y))) | ||
override def combineAllOption(bs: TraversableOnce[B]): Option[B] = | ||
fa.combineAllOption(bs.map(g)).map(f) | ||
} | ||
|
||
def pure[A](a: A): Semigroup[A] = new Semigroup[A] { | ||
def combine(x: A, y: A): A = a | ||
override def combineAllOption(as: TraversableOnce[A]): Option[A] = | ||
if (as.isEmpty) None else Some(a) | ||
} | ||
} | ||
|
||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package cats | ||
package tests | ||
|
||
import org.scalatest._ | ||
|
||
import cats.functor._ | ||
|
||
class EqTests extends FunSuite { | ||
{ | ||
import cats.implicits._ | ||
Invariant[Eq] | ||
Contravariant[Eq] | ||
Cartesian[Eq] | ||
ContravariantCartesian[Eq] | ||
} | ||
|
||
{ | ||
import cats.instances.eq._ | ||
Invariant[Eq] | ||
Contravariant[Eq] | ||
Cartesian[Eq] | ||
ContravariantCartesian[Eq] | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package cats | ||
package tests | ||
|
||
import org.scalatest._ | ||
|
||
import cats.functor._ | ||
|
||
class MonoidTests extends FunSuite { | ||
{ | ||
import cats.implicits._ | ||
Invariant[Monoid] | ||
Cartesian[Monoid] | ||
InvariantMonoidal[Monoid] | ||
} | ||
|
||
{ | ||
import cats.instances.monoid._ | ||
Invariant[Monoid] | ||
Cartesian[Monoid] | ||
InvariantMonoidal[Monoid] | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package cats | ||
package tests | ||
|
||
import cats.functor._ | ||
|
||
import org.scalatest._ | ||
|
||
class OrderTests extends FunSuite { | ||
{ | ||
import cats.implicits._ | ||
Invariant[Order] | ||
Contravariant[Order] | ||
} | ||
|
||
{ | ||
import cats.instances.order._ | ||
Invariant[Order] | ||
Contravariant[Order] | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package cats | ||
package tests | ||
|
||
import org.scalatest._ | ||
|
||
import cats.functor._ | ||
|
||
class PartialOrderTests extends FunSuite { | ||
{ | ||
import cats.implicits._ | ||
Invariant[PartialOrder] | ||
Contravariant[PartialOrder] | ||
} | ||
|
||
{ | ||
import cats.instances.partialOrder._ | ||
Invariant[PartialOrder] | ||
Contravariant[PartialOrder] | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package cats | ||
package tests | ||
|
||
import org.scalatest._ | ||
|
||
import cats.functor._ | ||
|
||
class SemigroupTests extends FunSuite { | ||
{ | ||
import cats.implicits._ | ||
Invariant[Semigroup] | ||
Cartesian[Semigroup] | ||
InvariantMonoidal[Semigroup] | ||
} | ||
|
||
{ | ||
import cats.instances.semigroup._ | ||
Invariant[Semigroup] | ||
Cartesian[Semigroup] | ||
InvariantMonoidal[Semigroup] | ||
} | ||
} |