Better Way to Do This
- Posted by euphoric (admin) Aug 06, 2009
- 1162 views
Is there a standard lib or more efficient function that could replace this? I'm using this for a type definition. The variable needs to be all sequences.
function no_atoms( sequence s ) integer i = 1 for t=1 to length(s) do if atom(i) then return 0 end if end for return 1 end function