We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4126d6 commit 38e9db9Copy full SHA for 38e9db9
modules/core/src/main/scala/hxl/DataSource.scala
@@ -38,12 +38,6 @@ import cats.implicits._
38
* def dataSource[F[_]: Concurrent](org: String): DataSource[F, ValueKey, String] =
39
* DataSource.from(Key(org)){ ks => ...
40
* ```
41
- *
42
- * Hxl eliminates duplicate keys by using scala's universal equality.
43
- * You can supply a custom "getKey" function if your key contains more information than what you'd like to act as "unique".
44
- * ```scala
45
- * DataSource.full(key)(x => x.id)(ks => ...)
46
- * ```
47
*/
48
trait DataSource[F[_], K, V] {
49
def key: DSKey[K, V]
0 commit comments