aboutsummaryrefslogtreecommitdiff
path: root/matlab/+types/Nil.m
blob: 7aa81301385ab987d40bf9a71f89398e28552797 (plain)
1
2
3
4
5
6
7
8
9
10
classdef Nil
    methods
        function len = length(obj)
            len = 0;
        end
        function ret = eq(a,b)
            ret = strcmp(class(b),'types.Nil');
        end
    end
end