Skip to content
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

Add cats-effect to the core module, remove modes #345

Merged
merged 21 commits into from
Jul 31, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove a couple of TODOs
cb372 committed Jul 31, 2020

Verified

This commit was signed with the committer’s verified signature.
cb372 Chris Birchall
commit d1c29adba4697ee91e5f98c5e0efeb8c23e9bc2a
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ import scala.language.higherKinds
/**
* Abstract algebra describing the operations a cache can perform
*
* @tparam F the effect of the cache. //todo elaborate
* @tparam F The effect monad in which all cache operations will be performed.
* @tparam V The value of types stored in the cache.
*/
trait CacheAlg[F[_], V] {
3 changes: 0 additions & 3 deletions modules/core/shared/src/main/scala/scalacache/package.scala
Original file line number Diff line number Diff line change
@@ -3,9 +3,6 @@ import scala.language.higherKinds

package object scalacache {

//todo
type Id[X] = X

/**
* Get the value corresponding to the given key from the cache.
*