Skip to content

Commit

Permalink
Move IsEq
Browse files Browse the repository at this point in the history
  • Loading branch information
Luka Jacobowitz committed Oct 4, 2017
1 parent e9ee232 commit c6ce594
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 0 additions & 2 deletions kernel-laws/src/main/scala/cats/kernel/laws/GroupLaws.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ package cats.kernel
package laws


final case class IsEq[A](lhs: A, rhs: A)

trait GroupLaws[A] extends MonoidLaws[A] {
override implicit def S: Group[A]

Expand Down
5 changes: 5 additions & 0 deletions kernel-laws/src/main/scala/cats/kernel/laws/IsEq.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package cats.kernel
package laws

/** Represents two values of the same type that are expected to be equal. */
final case class IsEq[A](lhs: A, rhs: A)

0 comments on commit c6ce594

Please sign in to comment.