bigloo.foreign.list_length C# (CSharp) Method

list_length() static private method

static private list_length ( Object l ) : int
l Object
return int
        static int list_length(Object l)
        {
            int i = 0;
             for( ; l != BNIL ;  l = ((pair) l).cdr, i++);
             return(i);
        }
foreign