view assertIsMember.m @ 949:6d2167719557 feature/utux2D

Remove half-commented switch in Utux.
author Martin Almquist <malmquist@stanford.edu>
date Wed, 05 Dec 2018 15:27:44 -0800
parents c596122374df
children
line wrap: on
line source

function assertIsMember(v, allowed)
    assert(ismember(v, allowed), 'Expected ''%s'' to be in the set %s', inputname(1), toString(allowed));
end