Skip to content
Subhajit Sahu edited this page Dec 28, 2022 · 15 revisions

Find the size of ilists.

Similar: size, isEmpty.


function size(x)
// x: ilists
const xilists = require('extra-ilists');

var x = [['a', 'b', 'c'], [1, 2, 3]];
xilists.size(x);
// → 3


References

Clone this wiki locally