-
Updated
Feb 5, 2022 - C++
cats
Here are 1,003 public repositories matching this topic...
-
Updated
Feb 4, 2022 - Scala
-
Updated
Feb 2, 2022 - Scala
full example from https://github.com/tpolecat/skunk/blob/v0.0.24/modules/docs/src/main/paradox/tutorial/Command.md
gives following compile errors
skunk-world/src/main/scala/CommandExample.scala:42:34
not found: type *
def fromSession[F[_] : Bracket[*[_], Throwable]](s: Session[F]): PetService[F] =
skunk-world/src/main/scala/CommandExample.scala:42:24
cats.effect.Bracket[<error>,Thro
-
Updated
Feb 5, 2022 - Scala
-
Updated
Aug 21, 2021 - Python
Currently, we manually append the params to the url / query string using urljoin. Instead, we can send the query params in as a dictionary
-
Updated
Jan 29, 2022 - Go
-
Updated
Feb 4, 2022 - Scala
Hi there, thanks for this project. Very happy so far.
We're trying to migrate to scala 3, and on of the things which came up was this.
I need to make this manual change to use a generated http4s client, in Implicits.scala
- implicit val showString = build[String](Predef.identity)
- implicit val showInt = build[Int](_.toString)
- implicit val showLong = build[Long](_.-
Updated
Nov 6, 2017 - Lua
-
Updated
Feb 5, 2022 - Scala
-
Updated
Feb 3, 2022 - Scala
-
Updated
Feb 2, 2022 - Scala
-
Updated
Feb 3, 2022 - Scala
-
Updated
Apr 5, 2021 - Jupyter Notebook
-
Updated
Feb 1, 2022 - Scala
See if it would be possible (and maybe useful) to define instances of higher-kinded typeclasses like ApplyK for the types in sup.
-
Updated
Feb 26, 2021 - Scala
Improve this page
Add a description, image, and links to the cats topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cats topic, visit your repo's landing page and select "manage topics."
We sometimes have data types which subtype
Orderedand other times have types which implementOrdering. We only need to doOrdering. We should ensure that all types which areOrderedalso have anOrderinginstance.Context: http4s/http4s#5013 (comment)