Exemplo n.º 1
0
    public Combinder(Combind combinder, T defaultVal)
    {
        this.combinder    = combinder;
        this.defaultValue = defaultVal;
        this.defaultKind  = DefaultKind.val;

        current = defaultVal;

        recalculate = false;
    }
Exemplo n.º 2
0
    public Combinder(Combind combinder, DefaultVal defaultVal)
    {
        this.combinder        = combinder;
        this.defaultValAction = defaultVal;
        this.defaultKind      = DefaultKind.action;

        current = defaultVal();

        recalculate = false;
    }