Packages

object Molecule_Factory2 extends Molecule_Factory2

Source
Molecule_Factory.scala
Linear Supertypes
Molecule_Factory2, AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. Molecule_Factory2
  2. Molecule_Factory2
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. implicit final macro def m[A, B](dsl: NS02[A, B]): Molecule02[A, B]

    Macro creation of molecule from user-defined DSL structure with 2 output attributes.

    Macro creation of molecule from user-defined DSL structure with 2 output attributes.

    Molecules can be created explicitly or implicitly by building a DSL structure using boilerplate code generated from the schema definition file.

    The builder pattern is used to add one or more attributes to an initial namespace like Person from the example below. Once the molecule models the desired data structure we can call various actions on it, like get that retrieves matching data from the database.

    Data structures are returned as tuples of values type-safely matching the molecule attribute types

    // Explicitly calling `m` to create Person molecule with 2 attributes
    m(Person.name.age).get.head === ("Ben", 42)
    
    // Molecule implicitly created so we can call `get`
    Person.name.age.get.head === ("Ben", 42)
    A

    Type of output attribute 1 (name: String)

    B

    Type of output attribute 2 (age: Int)

    dsl

    User-defined DSL structure modelling the molecule

    returns

    Molecule of arity-2 typed to two attributes (Molecule02[A, B])

    Definition Classes
    Molecule_Factory2
  13. implicit final macro def m[A](dsl: NS01[A]): Molecule01[A]

    Macro creation of molecule from user-defined DSL structure with 1 output attribute.

    Macro creation of molecule from user-defined DSL structure with 1 output attribute.

    Molecules can be created explicitly or implicitly by building a DSL structure using boilerplate code generated from the schema definition file.

    The builder pattern is used to add one or more attributes to an initial namespace like Person from the example below. Once the molecule models the desired data structure we can call various actions on it, like get that retrieves matching data from the database.

    // Explicitly calling `m` to create Person molecule with 1 output attribute
    m(Person.name).get === List("Ben")
    
    // Molecule implicitly created so we can call `get`
    Person.name.get.head === "Ben"

    For arity-many molecules, data structures are returned as tuples. But for arity-1 molecules (like the example having only 1 output attribute, name) there's no need for a tuple, so values type-safely matching the attribute are returned directly in the list.

    A

    Type of output attribute 1 (name: String)

    dsl

    User-defined DSL structure modelling the molecule

    returns

    Molecule of arity-1 typed to first attribute (Molecule01[A])

    Definition Classes
    Molecule_Factory2
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Molecule_Factory2

Inherited from AnyRef

Inherited from Any

molecule

Ungrouped