view default_field.m @ 110:f5ed7ff58115

Changed so that closures accepts bc data instead of the closure cretaorChanged so that closures accepts bc data instead of the closure cretaors.
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 08 Dec 2015 13:03:04 +0100
parents 14bf01b7a068
children 50cafc4b9e40
line wrap: on
line source

function default_field(s, f, val)
    if isfield(s,f)
        return
    end
    s.(f) = val;
    assignin('caller', inputname(1),s);
end