fs2
Here are 172 public repositories matching this topic...
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
Mar 4, 2022 - Scala
-
Updated
Mar 1, 2022 - Scala
Take a look at None case: c.zrevrangebyscoreWithScores should be instead of c.zrangebyscoreWithScores
Similarly to #234, it would be useful to provide functions for creating test KafkaProducers.
A good first function would be one which yields somewhat sensible default RecordMetadata.
object KafkaProducer {
def unit[F[_], K, V](implicit F: Sync[F]): F[KafkaProducer[F, K, V]] = ???
}Likely, this would require some internal state, hence F[KafkaProducer[F, K, V]].
-
Updated
Feb 28, 2022 - Scala
-
Updated
Feb 26, 2022 - Scala
-
Updated
May 25, 2021 - Scala
-
Updated
Feb 14, 2022 - Scala
-
Updated
Feb 28, 2022 - Scala
-
Updated
Jan 5, 2019 - Scala
-
Updated
Mar 4, 2022 - Scala
-
Updated
Mar 1, 2022 - Scala
-
Updated
Jun 19, 2018 - Scala
Add microsite
See
- https://47deg.github.io/sbt-microsites/
- in conjunction with http://tpolecat.github.io/tut/
-
Updated
Jul 4, 2019 - Scala
-
Updated
Feb 28, 2022 - Scala
-
Updated
Mar 27, 2018
-
Updated
May 5, 2019 - Scala
-
Updated
Dec 15, 2021 - Scala
-
Updated
Jan 17, 2022 - Scala
-
Updated
Mar 3, 2022 - Scala
-
Updated
Mar 3, 2022 - Scala
-
Updated
Mar 5, 2022 - Scala
Improve this page
Add a description, image, and links to the fs2 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the fs2 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)