Mercurial > repos > public > sbplib
view assertIsMember.m @ 1146:52f59d27b40f feature/rv
Add missing semicolon
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Sat, 19 Jan 2019 17:20:14 +0100 |
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