Open jihuun opened 3 years ago
Hi,
What is next() doing? in the below code? And is there documentation or something about how to use the next()? Thanks!
next()
for node in document.find(Class("question-summary")).take(5) { let question = node.find(Class("question-hyperlink")).next().unwrap();
It's a regular iterator Find.
Hi,
What is
next()
doing? in the below code? And is there documentation or something about how to use the next()? Thanks!