-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce cats-kernel and remove algebra dependency #1001
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
03aad13
Get algebra-core added to Cats.
non 38a3dc8
Port relevant instances from algebra.std to cats.kernel.std.
non 157710f
Get the relevant bits of algebra.laws ported over.
non ceb94cc
Get law tests compiling but not running.
non 673d045
Get tests running and passing.
non d19a098
Fix tests in JS.
non 3378af3
Add missing instances to cats.kernel.std.
non 34e206a
Remove algebra.
non 041a06a
Remove the algebra dependency.
non f8e3910
Work around 2.10 bug with Unit specialization.
erik-stripe e6bd8fe
Respond to Oscar's review comments.
erik-stripe 4b8b789
Remove totally-commented file.
erik-stripe ada6b75
Remove bintray resolver from cats-kernel's SBT config.
erik-stripe de8a2fc
Improve testing, remove lawless instance.
erik-stripe fc0acf2
Optimize eqv/partialCompare/compare using eq where relevant.
erik-stripe 5f408e1
Address some of Cody's review comments.
erik-stripe d2dcb23
Merge remote-tracking branch 'upstream/master' into topic/kernel2
erik-stripe 8fe8938
Change function traits to be abstract classes.
erik-stripe aac4652
Merge remote-tracking branch 'upstream/master' into topic/kernel2
non File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package cats | ||
package std | ||
|
||
trait BigIntInstances extends algebra.std.BigIntInstances { | ||
trait BigIntInstances extends cats.kernel.std.BigIntInstances { | ||
implicit val bigIntShow: Show[BigInt] = | ||
Show.fromToString[BigInt] | ||
} |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should
catalysts-platform
have a% "test"
modifier?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think not, since we are checking the platform in the law testing code that we are publishing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I didn't realize this was only being included in laws/tests. 👍