abstract
class
Shape[Level <: ShapeLevel, -Mixed_, Unpacked_, Packed_] extends AnyRef
Instance Constructors
-
new
Shape()
Type Members
-
type
Mixed = Mixed_
-
type
Packed = Packed_
-
type
Unpacked = Unpacked_
Abstract Value Members
-
abstract
def
buildParams(extract: (Any) ⇒ Unpacked): Packed
-
abstract
def
encodeRef(value: Mixed, path: Node): Any
-
abstract
def
pack(value: Mixed): Packed
-
-
abstract
def
toNode(value: Mixed): Node
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
def
->[B](y: B): (Shape[Level, Mixed_, Unpacked_, Packed_], B)
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
ensuring(cond: (Shape[Level, Mixed_, Unpacked_, Packed_]) ⇒ Boolean, msg: ⇒ Any): Shape[Level, Mixed_, Unpacked_, Packed_]
-
def
ensuring(cond: (Shape[Level, Mixed_, Unpacked_, Packed_]) ⇒ Boolean): Shape[Level, Mixed_, Unpacked_, Packed_]
-
def
ensuring(cond: Boolean, msg: ⇒ Any): Shape[Level, Mixed_, Unpacked_, Packed_]
-
def
ensuring(cond: Boolean): Shape[Level, Mixed_, Unpacked_, Packed_]
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
def
formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
→[B](y: B): (Shape[Level, Mixed_, Unpacked_, Packed_], B)
Inherited from AnyRef
Inherited from Any
Inherited by implicit conversion any2stringadd from
Shape[Level, Mixed_, Unpacked_, Packed_] to any2stringadd[Shape[Level, Mixed_, Unpacked_, Packed_]]
Inherited by implicit conversion StringFormat from
Shape[Level, Mixed_, Unpacked_, Packed_] to StringFormat[Shape[Level, Mixed_, Unpacked_, Packed_]]
Inherited by implicit conversion Ensuring from
Shape[Level, Mixed_, Unpacked_, Packed_] to Ensuring[Shape[Level, Mixed_, Unpacked_, Packed_]]
Inherited by implicit conversion ArrowAssoc from
Shape[Level, Mixed_, Unpacked_, Packed_] to ArrowAssoc[Shape[Level, Mixed_, Unpacked_, Packed_]]
A type class that encodes the unpacking
Mixed => Unpacked
of aQuery[Mixed]
to its result element typeUnpacked
and the packing to a fully packed typePacked
, i.e. a type where everything which is not a transparent container is wrapped in aColumn[_]
.Example:
- Mixed: (Column[Int], Column[(Int, String)], (Int, Option[Double])) - Unpacked: (Int, (Int, String), (Int, Option[Double])) - Packed: (Column[Int], Column[(Int, String)], (Column[Int], Column[Option[Double]])) - Linearized: (Int, Int, String, Int, Option[Double])