object CompositeInit_0
Build composite molecule.
Composite molecules model entities with attributes from different namespaces that are
not necessarily related. Each group of attributes is modelled by a molecule and the
"sub-molecules" are tied together with + methods to form a composite molecule.
The attributes of the first sub-molecule are tied
together in a tuple of its own before being merged with the tuple of attribute values
of the second sub-molecule. If any of the sub-molecules are of arity-1, then no tuple is created:
// Arity 1 + 1 m(Article.name + Tag.category).get === List( ("Battle of Waterloo", "History") ) // Arity 1 + 2 m(Article.name + Tag.category.weight).get === List( ("Battle of Waterloo", ("History", 5)) ) // Arity 2 + 1 m(Article.name.author + Tag.category).get === List( (("Battle of Waterloo", "Ben Bridge"), "History") ) // Arity 2 + 2 m(Article.name.author + Tag.category.weight).get === List( (("Battle of Waterloo", "Ben Bridge"), ("History", 5)) ) // Arity 3 + 2 etc... m(Article.name.author.editor + Tag.category.weight).get === List( (("Battle of Waterloo", "Ben Bridge", "Joe Moe"), ("History", 5)) )
- Source
- CompositeInit_0.scala
- Alphabetic
- By Inheritance
- CompositeInit_0
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- trait CompositeInit_0_00[obj[_], props] extends AnyRef
- trait CompositeInit_0_01[obj[_], props, A] extends AnyRef
- trait CompositeInit_0_02[obj[_], props, A, B] extends AnyRef
- trait CompositeInit_0_03[obj[_], props, A, B, C] extends AnyRef
- trait CompositeInit_0_04[obj[_], props, A, B, C, D] extends AnyRef
- trait CompositeInit_0_05[obj[_], props, A, B, C, D, E] extends AnyRef
- trait CompositeInit_0_06[obj[_], props, A, B, C, D, E, F] extends AnyRef
- trait CompositeInit_0_07[obj[_], props, A, B, C, D, E, F, G] extends AnyRef
- trait CompositeInit_0_08[obj[_], props, A, B, C, D, E, F, G, H] extends AnyRef
- trait CompositeInit_0_09[obj[_], props, A, B, C, D, E, F, G, H, I] extends AnyRef
- trait CompositeInit_0_10[obj[_], props, A, B, C, D, E, F, G, H, I, J] extends AnyRef
- trait CompositeInit_0_11[obj[_], props, A, B, C, D, E, F, G, H, I, J, K] extends AnyRef
- trait CompositeInit_0_12[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L] extends AnyRef
- trait CompositeInit_0_13[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M] extends AnyRef
- trait CompositeInit_0_14[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M, N] extends AnyRef
- trait CompositeInit_0_15[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O] extends AnyRef
- trait CompositeInit_0_16[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P] extends AnyRef
- trait CompositeInit_0_17[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q] extends AnyRef
- trait CompositeInit_0_18[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R] extends AnyRef
- trait CompositeInit_0_19[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S] extends AnyRef
- trait CompositeInit_0_20[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T] extends AnyRef
- trait CompositeInit_0_21[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U] extends AnyRef
- trait CompositeInit_0_22[obj[_], props, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V] extends AnyRef
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()

Documentation/API for the Molecule library - a meta DSL for the Datomic database.
scalamolecule.org | Github | Forum