redis

algebra

package algebra

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. algebra
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. final case class Append[A](key: ByteString, value: ByteString, h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  2. final case class Auth[A](password: ByteString, h: (Status) ⇒ A) extends ConnectionAlgebra[A] with Product with Serializable

  3. final case class Bgrewriteaof[A](h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  4. final case class Bgsave[A](h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  5. final case class Bitcount[A](key: ByteString, range: Option[(Long, Long)], h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  6. final case class Bitop[A](operation: BitOperation, h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  7. final case class Blpop[A](keys: NonEmptyList[ByteString], timeout: Seconds, h: (Option[(ByteString, ByteString)]) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  8. final case class Brpop[A](keys: NonEmptyList[ByteString], timeout: Seconds, h: (Option[(ByteString, ByteString)]) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  9. final case class Brpoplpush[A](source: ByteString, destination: ByteString, timeout: Seconds, h: (Option[ByteString]) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  10. type ByteString = Seq[Byte]

  11. type C0[A] = Coproduct[ConnectionAlgebra, HashAlgebra, A]

  12. type C1[A] = Coproduct[KeyAlgebra, C0, A]

  13. type C2[A] = Coproduct[ListAlgebra, C1, A]

  14. type C3[A] = Coproduct[ScriptAlgebra, C2, A]

  15. type C4[A] = Coproduct[ServerAlgebra, C3, A]

  16. type C5[A] = Coproduct[SetAlgebra, C4, A]

  17. type C6[A] = Coproduct[StringAlgebra, C5, A]

  18. type C7[A] = Coproduct[ZSetAlgebra, C6, A]

  19. final case class Clientgetname[A](h: (Option[ByteString]) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  20. final case class Clientkill[A](ip: ByteString, port: Int, h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  21. final case class Clientlist[A](h: (Seq[ByteString]) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  22. final case class Clientsetname[A](name: ByteString, h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  23. final case class Configget[A](parameter: ByteString, h: (Seq[ByteString]) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  24. final case class Configresetstat[A](h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  25. final case class Configrewrite[A](h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  26. final case class Configset[A](parameter: ByteString, value: ByteString, h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  27. sealed abstract class ConnectionAlgebra[A] extends AnyRef

  28. trait ConnectionFunctions extends InjectFunctions

  29. trait ConnectionInstances extends AnyRef

  30. final case class Dbsize[A](h: (Short) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  31. final case class Debugobject[A](key: ByteString, h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  32. final case class Debugsegfault[A](h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  33. final case class Decr[A](key: ByteString, h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  34. final case class Decrby[A](key: ByteString, decrement: Long, h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  35. final case class Del[A](keys: NonEmptyList[ByteString], h: (Long) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  36. final case class Dump[A](key: ByteString, h: (Option[ByteString]) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  37. final case class Echo[A](message: ByteString, h: (ByteString) ⇒ A) extends ConnectionAlgebra[A] with Product with Serializable

  38. final case class Eval[A](script: ByteString, keys: Seq[ByteString], args: Seq[ByteString], h: (LuaResult) ⇒ A) extends ScriptAlgebra[A] with Product with Serializable

  39. final case class Evalsha[A](sha1: ByteString, keys: Seq[ByteString], args: Seq[ByteString], h: (LuaResult) ⇒ A) extends ScriptAlgebra[A] with Product with Serializable

  40. final case class Exists[A](key: ByteString, h: (Boolean) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  41. final case class Expire[A](key: ByteString, in: Seconds, h: (Boolean) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  42. final case class Expireat[A](key: ByteString, at: Seconds, h: (Boolean) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  43. type F[A] = Free[RedisAlgebra, A]

  44. final case class Flushall[A](h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  45. final case class Flushdb[A](h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  46. final case class Get[A](key: ByteString, h: (Option[ByteString]) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  47. final case class Getbit[A](key: ByteString, offset: Long, h: (Boolean) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  48. final case class Getrange[A](key: ByteString, start: Long, end: Long, h: (ByteString) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  49. final case class Getset[A](key: ByteString, value: ByteString, h: (Option[ByteString]) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  50. sealed abstract class HashAlgebra[A] extends AnyRef

  51. trait HashFunctions extends InjectFunctions

  52. trait HashInstances extends AnyRef

  53. final case class Hdel[A](key: ByteString, fields: NonEmptyList[ByteString], h: (Long) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  54. final case class Hexists[A](key: ByteString, field: ByteString, h: (Boolean) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  55. final case class Hget[A](key: ByteString, field: ByteString, h: (Option[ByteString]) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  56. final case class Hgetall[A](key: ByteString, h: (Seq[(ByteString, ByteString)]) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  57. final case class Hincrby[A](key: ByteString, field: ByteString, increment: Long, h: (Long) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  58. final case class Hincrbyfloat[A](key: ByteString, field: ByteString, increment: BigDecimal, h: (BigDecimal) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  59. final case class Hkeys[A](key: ByteString, h: (Seq[ByteString]) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  60. final case class Hlen[A](key: ByteString, h: (Long) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  61. final case class Hmget[A](key: ByteString, fields: NonEmptyList[ByteString], h: (Seq[Option[ByteString]]) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  62. final case class Hmset[A](key: ByteString, pairs: NonEmptyList[(ByteString, ByteString)], h: (Status) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  63. final case class Hset[A](key: ByteString, field: ByteString, value: ByteString, h: (Boolean) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  64. final case class Hsetnx[A](key: ByteString, field: ByteString, value: ByteString, h: (Boolean) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  65. final case class Hvals[A](key: ByteString, h: (Seq[ByteString]) ⇒ A) extends HashAlgebra[A] with Product with Serializable

  66. final case class Incr[A](key: ByteString, h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  67. final case class Incrby[A](key: ByteString, increment: Long, h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  68. final case class Incrbyfloat[A](key: ByteString, increment: BigDecimal, h: (BigDecimal) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  69. final case class Info[A](section: Option[ByteString], h: (ByteString) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  70. sealed abstract class KeyAlgebra[A] extends AnyRef

  71. trait KeyFunctions extends InjectFunctions

  72. trait KeyInstances extends AnyRef

  73. final case class Keys[A](pattern: ByteString, h: (Seq[ByteString]) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  74. final case class Lastsave[A](h: (Seconds) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  75. final case class Lindex[A](key: ByteString, index: Long, h: (Option[ByteString]) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  76. final case class Linsert[A](key: ByteString, position: Position, pivot: ByteString, value: ByteString, h: (Option[Long]) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  77. sealed abstract class ListAlgebra[A] extends AnyRef

  78. trait ListFunctions extends InjectFunctions

  79. trait ListInstances extends AnyRef

  80. final case class Llen[A](key: ByteString, h: (Long) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  81. final case class Lpop[A](key: ByteString, h: (Option[ByteString]) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  82. final case class Lpush[A](key: ByteString, values: NonEmptyList[ByteString], h: (Long) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  83. final case class Lpushx[A](key: ByteString, value: ByteString, h: (Long) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  84. final case class Lrange[A](key: ByteString, start: Long, stop: Long, h: (Seq[ByteString]) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  85. final case class Lrem[A](key: ByteString, count: Long, value: ByteString, h: (Long) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  86. final case class Lset[A](key: ByteString, index: Long, value: ByteString, h: (Status) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  87. final case class Ltrim[A](key: ByteString, start: Long, stop: Long, a: (Status) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  88. final case class Mget[A](keys: NonEmptyList[ByteString], h: (Seq[Option[ByteString]]) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  89. type Microseconds = Int

  90. final case class Migrate[A](host: ByteString, port: Int, key: ByteString, timeout: Milliseconds, destination: Short, copy: Boolean, replace: Boolean, h: (Status) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  91. type Milliseconds = Long

  92. final case class Monitor[A](h: (Stream[ByteString]) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  93. final case class Move[A](key: ByteString, db: Short, h: (Boolean) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  94. final case class Mset[A](pairs: NonEmptyList[(ByteString, ByteString)], h: (Status) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  95. final case class Msetnx[A](pairs: NonEmptyList[(ByteString, ByteString)], h: (Boolean) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  96. final case class Object[A](subcommand: ObjectSubcommand, h: (Option[ObjectResult]) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  97. final case class Persist[A](key: ByteString, h: (Boolean) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  98. final case class Pexpire[A](key: ByteString, in: Milliseconds, h: (Boolean) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  99. final case class Pexpireat[A](key: ByteString, at: Milliseconds, h: (Boolean) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  100. final case class Ping[A](h: (Status) ⇒ A) extends ConnectionAlgebra[A] with Product with Serializable

  101. final case class Psetex[A](key: ByteString, in: Milliseconds, value: ByteString, h: (Status) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  102. final case class Pttl[A](key: ByteString, h: (Option[Milliseconds]) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  103. final case class Quit[A](h: (Status) ⇒ A) extends ConnectionAlgebra[A] with Product with Serializable

  104. type R[A] = Coproduct[ZSetAlgebra, C6, A]

  105. final case class Randomkey[A](h: (Option[ByteString]) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  106. type RedisAlgebra[A] = Coproduct[ZSetAlgebra, C6, A]

  107. type RedisAlgebraFree[A] = Free[RedisAlgebra, A]

  108. final case class Rename[A](key: ByteString, name: ByteString, h: (Status) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  109. final case class Renamenx[A](key: ByteString, name: ByteString, h: (Boolean) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  110. final case class Restore[A](key: ByteString, ttl: Option[Milliseconds], value: ByteString, h: (Status) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  111. final case class Rpop[A](key: ByteString, h: (Option[ByteString]) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  112. final case class Rpoplpush[A](source: ByteString, destination: ByteString, h: (Option[ByteString]) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  113. final case class Rpush[A](key: ByteString, values: NonEmptyList[ByteString], h: (Long) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  114. final case class Rpushx[A](key: ByteString, value: ByteString, h: (Long) ⇒ A) extends ListAlgebra[A] with Product with Serializable

  115. final case class Sadd[A](key: ByteString, members: NonEmptyList[ByteString], h: (Long) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  116. final case class Save[A](h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  117. final case class Scard[A](key: ByteString, h: (Long) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  118. sealed abstract class ScriptAlgebra[A] extends AnyRef

  119. trait ScriptFunctions extends InjectFunctions

  120. trait ScriptInstances extends AnyRef

  121. final case class Scriptexists[A](scripts: NonEmptyList[ByteString], h: (NonEmptyList[Boolean]) ⇒ A) extends ScriptAlgebra[A] with Product with Serializable

  122. final case class Scriptflush[A](h: (Status) ⇒ A) extends ScriptAlgebra[A] with Product with Serializable

  123. final case class Scriptkill[A](h: (Status) ⇒ A) extends ScriptAlgebra[A] with Product with Serializable

  124. final case class Scriptload[A](script: ByteString, h: (Option[ByteString]) ⇒ A) extends ScriptAlgebra[A] with Product with Serializable

  125. final case class Sdiff[A](keys: NonEmptyList[ByteString], h: (scala.collection.immutable.Set[ByteString]) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  126. final case class Sdiffstore[A](destination: ByteString, keys: NonEmptyList[ByteString], h: (Long) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  127. type Seconds = Long

  128. final case class Select[A](index: Short, h: (Status) ⇒ A) extends ConnectionAlgebra[A] with Product with Serializable

  129. sealed abstract class ServerAlgebra[A] extends AnyRef

  130. trait ServerFunctions extends InjectFunctions

  131. trait ServerInstances extends AnyRef

  132. final case class Set[A](key: ByteString, value: ByteString, in: Option[\/[Seconds, Milliseconds]], option: Option[SetOption], h: (Boolean) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  133. sealed abstract class SetAlgebra[A] extends AnyRef

  134. trait SetFunctions extends InjectFunctions

  135. trait SetInstances extends AnyRef

  136. final case class Setbit[A](key: ByteString, offset: Long, value: Boolean, h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  137. final case class Setex[A](key: ByteString, in: Seconds, value: ByteString, h: (Status) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  138. final case class Setnx[A](key: ByteString, value: ByteString, h: (Boolean) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  139. final case class Setrange[A](key: ByteString, offset: Long, value: ByteString, h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  140. final case class Shutdown[A](save: Option[Boolean], h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  141. final case class Sinter[A](keys: NonEmptyList[ByteString], h: (scala.collection.immutable.Set[ByteString]) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  142. final case class Sinterstore[A](destination: ByteString, keys: NonEmptyList[ByteString], h: (Long) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  143. final case class Sismember[A](key: ByteString, member: ByteString, h: (Boolean) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  144. final case class Slaveof[A](master: Master, h: (Status) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  145. final case class Slowlog[A](subcommand: SlowlogSubcommand, h: (SlowlogResult) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  146. final case class Smembers[A](key: ByteString, h: (scala.collection.immutable.Set[ByteString]) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  147. final case class Smove[A](source: ByteString, destination: ByteString, member: ByteString, h: (Boolean) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  148. final case class Sort[A](key: ByteString, by: Option[By], limit: Option[Limit], get: Seq[ByteString], order: Order, alpha: Boolean, store: Option[ByteString], h: (\/[Seq[ByteString], Long]) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  149. final case class Spop[A](key: ByteString, h: (Option[ByteString]) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  150. final case class Srandmember[A](key: ByteString, count: Option[Long], h: (scala.collection.immutable.Set[ByteString]) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  151. final case class Srem[A](key: ByteString, members: NonEmptyList[ByteString], h: (Long) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  152. sealed abstract class StringAlgebra[A] extends AnyRef

  153. trait StringFunctions extends InjectFunctions

  154. trait StringInstances extends AnyRef

  155. final case class Strlen[A](key: ByteString, h: (Long) ⇒ A) extends StringAlgebra[A] with Product with Serializable

  156. final case class Sunion[A](keys: NonEmptyList[ByteString], h: (scala.collection.immutable.Set[ByteString]) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  157. final case class Sunionstore[A](destination: ByteString, keys: NonEmptyList[ByteString], h: (Long) ⇒ A) extends SetAlgebra[A] with Product with Serializable

  158. final case class Sync[A](a: A) extends ServerAlgebra[A] with Product with Serializable

  159. final case class Time[A](h: ((Seconds, Microseconds)) ⇒ A) extends ServerAlgebra[A] with Product with Serializable

  160. final case class Ttl[A](key: ByteString, h: (Option[Seconds]) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  161. final case class Type[A](key: ByteString, h: (Option[data.Type]) ⇒ A) extends KeyAlgebra[A] with Product with Serializable

  162. sealed abstract class ZSetAlgebra[A] extends AnyRef

  163. trait ZSetFunctions extends InjectFunctions

  164. trait ZSetInstances extends AnyRef

  165. final case class Zadd[A](key: ByteString, pairs: NonEmptyList[(Double, ByteString)], h: (Long) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  166. final case class Zcard[A](key: ByteString, h: (Long) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  167. final case class Zcount[A](key: ByteString, min: Endpoint, max: Endpoint, h: (Long) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  168. final case class Zincrby[A](key: ByteString, increment: Double, member: ByteString, h: (Double) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  169. final case class Zinterstore[A](destination: ByteString, keys: NonEmptyList[ByteString], weights: Option[NonEmptyList[Double]], aggregate: Aggregate, h: (Long) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  170. final case class Zrange[A](key: ByteString, start: Long, stop: Long, withScores: Boolean, h: (Seq[(ByteString, Option[Double])]) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  171. final case class Zrangebyscore[A](key: ByteString, min: Endpoint, max: Endpoint, withScores: Boolean, limit: Option[Limit], h: (Seq[(ByteString, Option[Double])]) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  172. final case class Zrank[A](key: ByteString, member: ByteString, h: (Option[Long]) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  173. final case class Zrem[A](key: ByteString, members: NonEmptyList[ByteString], h: (Long) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  174. final case class Zremrangebyrank[A](key: ByteString, start: Long, stop: Long, h: (Long) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  175. final case class Zremrangebyscore[A](key: ByteString, start: Endpoint, stop: Endpoint, h: (Long) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  176. final case class Zrevrange[A](key: ByteString, start: Long, stop: Long, withScores: Boolean, h: (Seq[(ByteString, Option[Double])]) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  177. final case class Zrevrangebyscore[A](key: ByteString, min: Endpoint, max: Endpoint, withScores: Boolean, limit: Option[Limit], h: (Seq[(ByteString, Option[Double])]) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  178. final case class Zrevrank[A](key: ByteString, member: ByteString, h: (Option[Long]) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  179. final case class Zscore[A](key: ByteString, member: ByteString, h: (Option[Double]) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

  180. final case class Zunionstore[A](destination: ByteString, keys: NonEmptyList[ByteString], weights: Option[NonEmptyList[Double]], aggregate: Aggregate, h: (Long) ⇒ A) extends ZSetAlgebra[A] with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped