Packages

package exec

Type Members

  1. trait Execs[T <: StructureBuilder[T, W], W <: core.structure.StructureBuilder[W]] extends AnyRef

    Execs methods for defining actions.

    Execs methods for defining actions.

    Important: instances are immutable so any method doesn't mutate the existing instance but returns a new one, eg

    
    ChainBuilder chain1 = ???
    // chain2 is different from chain1
    // chain1 isn't modified and doesn't have this new "exec"
    ChainBuilder chain2 = chain1.exec(???);
    
    

Ungrouped