(ISeq list)
| 1798 | } |
| 1799 | |
| 1800 | static public int length(ISeq list){ |
| 1801 | int i = 0; |
| 1802 | for(ISeq c = list; c != null; c = c.next()) { |
| 1803 | i++; |
| 1804 | } |
| 1805 | return i; |
| 1806 | } |
| 1807 | |
| 1808 | static public int boundedLength(ISeq list, int limit) { |
| 1809 | int i = 0; |
no test coverage detected